Data Transform
URL encode/decode API
Encode or decode URL components or full query strings for lightweight data transformation workflows.
Price$0.01per request
MethodPOST
Route/v1/data-transform/url
StatusLive
MIME typeapplication/json
Rate limit180/minute
CacheNo cache
data-transformurlencodedecode
API URL
Integration docshttps://x402.hexl.dev/v1/data-transform/urlExample request
{
"operation": "encode",
"input": "hello world"
}Example response
{
"operation": "encode",
"mode": "component",
"output": "hello%20world",
"provider": "node-url"
}Input schema
{
"type": "object",
"required": [
"operation",
"input"
],
"properties": {
"operation": {
"type": "string",
"enum": [
"encode",
"decode"
]
},
"input": {
"type": "string"
},
"mode": {
"type": "string",
"enum": [
"component",
"form"
],
"default": "component"
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}