Catalog/encoding-quoted-printable

Encoding

Quoted-printable codec API

Encodes/decodes RFC2045 quoted-printable used in email bodies, handling =XX escapes, soft line breaks at 76 chars, and UTF-8. Answers 'What is the quoted-printable of this text?', 'Decode this quoted-printable email body.'

Price$0.01per request
MethodPOST
Route/v1/encoding/quoted-printable
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
quoted-printablerfc2045emailmimeencodedecodeutf8encoding
API URLhttps://x402.hexl.dev/v1/encoding/quoted-printable
Integration docs
Example request
{
  "value": "café"
}
Example response
{
  "operation": "encode",
  "result": "caf=C3=A9",
  "interpretation": "Quoted-printable encoded 5 bytes."
}
Input schema
{
  "type": "object",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "type": "string",
      "examples": [
        "café"
      ]
    },
    "operation": {
      "type": "string",
      "enum": [
        "encode",
        "decode"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}