The EnDcode API provides programmatic access to our comprehensive text encoding and decoding service. Transform text between 40+ different formats including Base64, Hexadecimal, Binary, Classical Ciphers, Case Transformations, and more.
Lightning-fast processing
No data logging or storage
Comprehensive format support
Currently, the EnDcode API is open and does not require authentication. However, we recommend implementing rate limiting on your end to prevent abuse.
Note: Authentication may be required in future versions for enhanced security and usage tracking.
/encode-decodeEncode or decode text using the specified format.
textoperationtypecurl -X GET "https://en-dcode.vercel.app/api/encode-decode?text=Hello%20World&operation=encode&type=base64"
curl -X GET "https://en-dcode.vercel.app/api/encode-decode?text=SGVsbG8gV29ybGQ%3D&operation=decode&type=base64"
{
"success": true,
"operation": "encode",
"type": "base64",
"input": "Hello World",
"output": "SGVsbG8gV29ybGQ=",
"timestamp": "2024-01-15T10:30:00.000Z"
}{
"success": false,
"error": "Invalid type. Supported types: base64, hex, binary, ...",
"timestamp": "2024-01-15T10:30:00.000Z"
}Missing required parameters or invalid format
Rate limit exceeded
Server processing error
To ensure fair usage and maintain service quality, the EnDcode API implements rate limiting:
Note: Rate limits may be adjusted based on usage patterns and server capacity.
EnDcode API by OmHackz - Universal Text Encoding & Decoding Service
Built with ❤️ for developers worldwide