Ship & run
Reshape requests & responses
Map JWT claims to headers, hardcode values, rewrite payloads and look up values in mapping tables — applied at the edge, before your backend ever sees the request.
- Map claims → headers / params
- Hardcode, encode (base64 / hash / url), regex
- Lookup tables up to 1,000 entries
- Conditional if-then rules
curl — create with transforms
curl -sX POST https://api.apiblaze.com/proxy \
-H 'content-type: application/json' \
-d '{
"target": "https://api.example.com",
"transforms": [
{ "when": "request",
"set_header": { "X-User": "{jwt.sub}" } },
{ "when": "request",
"lookup": { "table": "tenants", "key": "{jwt.org}",
"into_header": "X-Tenant" } }
]
}'Glue without a gateway rewrite
Claim mapping
Forward identity and metadata to your backend as headers or params.
Lookup tables
Bridge consumer ids to backend ids with up to 1,000 entries.
Encode & rewrite
base64 / hash / url / regex transforms with conditional execution.
Try it in 30 seconds
No signup required. Claim it to your account whenever you’re ready.