#
Base64 Decode
The Base64 Encode endpoint converts an input string or data into Base64 format, which encodes binary data into a text-based representation.
#
Endpoint
- URL:
https://api.harys.is-a.dev/v1/base64/encode
- Method:
POST
- Description: The Base64 Encode endpoint converts a string to Base64 format.
#
Request Body
#
HTTP Header
#
Request Example
https://api.harys.is-a.dev/v1/base64/encode
{
"string": "Open API"
}
#
Response
{
"base64": {
"string": "Open API",
"encoded": "T3BlbiBBUEk="
},
"info": {
"docs": "https://open-api.js.org/",
"github": "https://github.com/harys722/open-api"
}
}