HTTP 400Validation
pair_not_supported
The pair isn't available on the requested corridor.
What this means
The asset pair (input token → output token) isn't supported on the requested corridor. Corridor availability depends on which solvers are active for that route.
How to recover
Call GET /v1/corridors to list supported pairs per corridor.
Example response
All TetraFi errors include a stable code, a human-readable message, and a docs_url pointing to this page.
JSON
1{2 "error": {3 "code": "pair_not_supported",4 "message": "The pair isn't available on the requested corridor.",5 "docs_url": "https://tetrafi.io/docs/integration/errors/pair_not_supported/"6 }7}7 linesjson
Match in code
TypeScript
1try {2 await tetrafi.rfq.create({ /* ... */ });3} catch (err) {4 if (err.code === "pair_not_supported") {5 // Call GET /v1/corridors to list supported pairs per corridor.6 }7 throw err;8}8 linestypescript
Related validation errors
400400400400400422
invalid_request
Malformed request or missing required parameter.
missing_field
Required field absent from request body.
amount_too_small
Below the minimum trade size for your tier.
amount_too_large
Exceeds the maximum trade size for your tier.
corridor_unavailable
No solvers currently cover the requested corridor.
validation_error
Field types are valid but business rules failed.