# Base64 Post Decode

> Decode a Base64-encoded string back to plain text

- Skill: `gabrielmoreira/base64-post-decode` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gabrielmoreira/base64-post-decode`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gabrielmoreira/base64-post-decode/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-decode

---


## Endpoint

**POST https://requiems.xyz/v1/technology/base64/decode**

## Decode

Decode a Base64-encoded string back to plain text

## Parameters

| Name | Type | Required | Location | Description |
| ---- | ---- | -------- | -------- | ----------- |
| `value` | string | yes | body | The Base64-encoded string to decode |
| `variant` | string | no | body | Encoding variant: standard (default) or url (URL-safe base64url) |

## Response Example

```json
{
  "data": {
    "result": "Hello, world!"
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}
```

## Response Fields

| Field | Type | Description |
| ----- | ---- | ----------- |
| `result` | string | The decoded plain-text output |

## Errors

- `undefined` **400** — Missing or empty value field
- `undefined` **422** — The value is not valid Base64 and cannot be decoded

