| title | Fee Breakdowns |
|---|---|
| description | Where to read fee details in routes, payment search, and status responses |
Fee breakdowns provide itemized cost details returned by reconciliation and routing endpoints.
Use this page to understand where fee data appears and how to consume it reliably.
- Endpoint: GET /v2/request/{requestId}/routes
- Fields include:
feefeeBreakdown[]
Route-level fee breakdowns are useful before execution (quote/comparison stage).
- Endpoint: GET /v2/payments
- Field includes:
fees[]
Payment-level fee breakdowns are useful after execution (reconciliation/reporting stage).
- Endpoint: GET /v2/request/{requestId}
- May include fee information in enriched status outputs.
Common fee type values in API responses:
protocolgasplatformcrosschaincrypto-to-fiatofframp
For route responses, feeBreakdown can include stage-level attribution:
sendingreceivingproxyingrefundingoverall
{
"fee": 0.0021,
"feeBreakdown": [
{
"type": "gas",
"stage": "sending",
"provider": "request-network",
"amount": "0.0012",
"currency": "USDC"
},
{
"type": "crosschain",
"stage": "overall",
"provider": "lifi",
"amount": "0.0009",
"currency": "USDC"
}
]
}{
"fees": [
{
"type": "protocol",
"provider": "request-network",
"amount": "0.05",
"currency": "USDC"
},
{
"type": "platform",
"provider": "request-network",
"amount": "0.50",
"currency": "USDC"
},
{
"type": "gas",
"provider": "ethereum",
"amount": "0.002",
"currency": "ETH"
}
]
}For complete schemas and examples, see Request Network API Reference.