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 | yes | body | List of Base64 strings to decode |
variant |
string | no | body | Encoding variant (standard or url) |
Response Example
{
"data": {
"results": [
{
"result": "Hello"
},
{
"result": "World"
}
],
"total": 2
}
}
Response Fields
| Field | Type | Description |
|---|---|---|
results |
array | Decoded results |
total |
integer | Number of processed items |
Errors
undefined422 — Invalid variant or values list size outside 1-50