← ClaudeAtlas

base64-post-batchlisted

Decode multiple Base64 strings in a single request
bobadilla-tech/requiems-api-skills · ★ 2 · AI & Automation · score 75
Install: claude install-skill bobadilla-tech/requiems-api-skills
## Endpoint **POST https://requiems.xyz/v1/technology/base64/decode/batch** ## Decode Batch Decode multiple Base64 strings in a single request ## Parameters | Name | Type | Required | Location | Description | | ---- | ---- | -------- | -------- | ----------- | | `values` | array<string> | yes | body | List of Base64 strings to decode | | `variant` | string | no | body | Encoding variant (standard or url) | ## Response Example ```json { "data": { "results": [ { "result": "Hello" }, { "result": "World" } ], "total": 2 } } ``` ## Response Fields | Field | Type | Description | | ----- | ---- | ----------- | | `results` | array<object> | Decoded results | | `total` | integer | Number of processed items | ## Errors - `undefined` **422** — Invalid variant or values list size outside 1-50