Base64 Encoder
Want more encoders? Join the discord to give suggestions
GET /base64
Query Requirements:
When making a request to this endpoint you must have atleast 1 of the below query parameters
Query Parameter |
---|
encode |
decode |
Example Response:
URL
https://api.some-random-api.com/base64?encode=...&decode=...
Response
{
"encoded": "aGVsbG8=", // Will only show if encode query present
"decoded": "hello" // Will only show if decode query present
}