Catalog/data-transform-base64

Data Transform

Base64 transform API

Base64 encode or decode a string for lightweight data transformation workflows.

Price$0.01per request
MethodPOST
Route/v1/data-transform/base64
StatusLive
MIME typeapplication/json
Rate limit180/minute
CacheNo cache
data-transformbase64encodedecode
API URLhttps://x402.hexl.dev/v1/data-transform/base64
Integration docs
Example request
{
  "operation": "encode",
  "input": "hello world"
}
Example response
{
  "operation": "encode",
  "output": "aGVsbG8gd29ybGQ=",
  "provider": "node-buffer"
}
Input schema
{
  "type": "object",
  "required": [
    "operation",
    "input"
  ],
  "properties": {
    "operation": {
      "type": "string",
      "enum": [
        "encode",
        "decode"
      ]
    },
    "input": {
      "type": "string"
    }
  }
}
Output schema
{
  "type": "object",
  "required": [
    "operation",
    "output",
    "provider"
  ],
  "properties": {
    "operation": {
      "type": "string"
    },
    "output": {
      "type": "string"
    },
    "provider": {
      "type": "string"
    }
  }
}