base64
This API provides a simple, reliable way to encode and decode data using Base64. It’s designed for developers who need a lightweight utility to handle binary or text data without maintaining their own infrastructure. You can send raw binary payloads or JSON inputs to the /encode endpoint and receive Base64 output. Similarly, the /decode endpoint lets you convert Base64 strings back into raw…
base64 endpoints
| Method | Endpoint | Description |
|---|---|---|
| encode | ||
| POST |
/encode /encode |
Encodes input to Base64. Enforces a **plan-based max input size**: BASIC 1 MiB • PRO 1 MiB • ULTRA 5 MiB • MEGA 20 MiB. Accepts **binary** (`application/octet-stream`) or **JSON**. |
| decode | ||
| POST |
/decode /decode |
Decodes Base64. Enforces **decoded-size** per plan (BASIC 1 MiB • PRO 5 MiB • ULTRA 20 MiB). Input is JSON; output is raw bytes by default, or JSON if `?json=1` or `Accept:… |
| Other endpoints | ||
| GET |
rootInfo / |
|
| GET |
rootInfo / |
|
| POST |
/encode /encode |
Encodes input to Base64. Enforces a **plan-based max input size**: BASIC 1 MiB • PRO 5 MiB • ULTRA 20 MiB. Accepts **binary** (`application/octet-stream`) or **JSON**. |
| POST |
/decode /decode |
Decodes Base64. Enforces **decoded-size** per plan (BASIC 1 MiB • PRO 5 MiB • ULTRA 20 MiB). Input is JSON; output is raw bytes by default, or JSON if `?json=1` or `Accept:… |
base64 pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO | $5 / month | — |
|
| ULTRA | $25 / month | — |
|
| MEGA | $99 / month | — |
|