#
Base64 Decode
The Base64 Decode endpoint enables you to effortlessly convert a Base64-encoded string back to its original text or data. Perfect for reversing Base64 encoding and extracting the original information from encoded inputs.
#
Endpoint
- URL:
https://api.harys.is-a.dev/v1/base64/decode
- Method:
POST
- Description: This endpoint decodes the base64-encoded string to its original text or data.
#
Request Body
#
HTTP Header
#
Request Example
https://api.harys.is-a.dev/v1/base64/decode
{
"string": "T3BlbiBBUEk="
}
#
Response
{
"base64": {
"string": "T3BlbiBBUEk=",
"decoded": "Open API"
},
"info": {
"docs": "https://open-api.js.org/",
"github": "https://github.com/harys722/open-api"
}
}