Skip to main contentSkip to FAQSkip to contact
HTTP 400Validation

amount_too_large

Exceeds the maximum trade size for your tier.

Back to all errors

What this means

The requested amount exceeds the maximum trade size for your tier. Maximums are enforced per tier and per corridor.

How to recover

Split into multiple trades or request a tier upgrade from your account manager.

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": "amount_too_large",
4 "message": "Exceeds the maximum trade size for your tier.",
5 "docs_url": "https://tetrafi.io/docs/integration/errors/amount_too_large/"
6 }
7}
7 linesjson

Match in code

TypeScript
1try {
2 await tetrafi.rfq.create({ /* ... */ });
3} catch (err) {
4 if (err.code === "amount_too_large") {
5 // Split into multiple trades or request a tier upgrade from your account manager.
6 }
7 throw err;
8}
8 linestypescript

Related validation errors