Encode or decode Base64 strings via free REST API. Returns JSON. Perfect for developers working with encoding. No API key required!
Encode or decode Base64 strings via free REST API. Returns JSON. Perfect for developers working with encoding. No API key required!
Encode or decode Base64 strings via free REST API. Returns JSON. Perfect for developers working with encoding. No API key required!
GET https://onemail.pro/api/base64?action=encode&text=Hello
| Parameter | Type | Description |
|---|---|---|
| action | string | encode or decode |
| text | string | Text to encode/decode (URL encoded) |
curl "https://onemail.pro/api/base64?action=encode&text=Hello%20World"
{
"success": true,
"action": "encode",
"input": "Hello World",
"output": "SGVsbG8gV29ybGQ=",
"generatedAt": "2026-03-03T12:00:00.000Z"
}