# Base64 Post Batch

> Decode multiple Base64 strings in a single request

- Skill: `gabrielmoreira/base64-post-batch` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gabrielmoreira/base64-post-batch`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gabrielmoreira/base64-post-batch/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: gabrielmoreira (https://skillmd.com/u/gabrielmoreira)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/gabrielmoreira/base64-post-batch

---


## 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

