API Documentation
POST
/api/v1/hex-textHex Text
Convert between hexadecimal and text
converters
Parameters
inputstringText or hex string
actionstring'encode' or 'decode'
Default: encode
uppercasebooleanUppercase output
Default: false
Example Request
curl -X POST https://devtools.at/api/v1/hex-text \
-H "Content-Type: application/json" \
-d '{"input":"Hello","action":"encode"}'Example Response
{
"success": true,
"data": {
"result": "48 65 6c 6c 6f"
},
"meta": {
"processingTime": 1
}
}Try it out
Test this endpoint directly in your browser
Response
Click "Execute Request" to see the response