curl --request POST \
--url https://dev.cashweb.cash/api/v1/partner/quotes \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"crypto_currency": "usdt",
"network": "bep20",
"crypto_amount": "100.00",
"fiat_amount": "161500.00"
}
'{
"data": {
"adjusted_rate": "1615.00",
"amount": "100.00",
"base_rate": "1625.00",
"expires_at": "2026-02-12T12:00:00Z",
"quote_id": "9f8ad58e-f8d5-4e4f-b3f2-f44eaf8f95d1"
},
"success": true
}Creates an executable quote for a token and network. Send exactly one amount mode: crypto_amount or fiat_amount. Quote responses include an expiry timestamp; expired quote IDs will be rejected during transaction creation.
curl --request POST \
--url https://dev.cashweb.cash/api/v1/partner/quotes \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"crypto_currency": "usdt",
"network": "bep20",
"crypto_amount": "100.00",
"fiat_amount": "161500.00"
}
'{
"data": {
"adjusted_rate": "1615.00",
"amount": "100.00",
"base_rate": "1625.00",
"expires_at": "2026-02-12T12:00:00Z",
"quote_id": "9f8ad58e-f8d5-4e4f-b3f2-f44eaf8f95d1"
},
"success": true
}Create a price quote for a token-network pair. Send exactly one of crypto_amount or fiat_amount.
Stablecoin symbol for the quote.
"usdt"
Blockchain network used for the deposit.
"bep20"
Crypto amount for quote generation.
"100.00"
Fiat amount for quote generation.
"161500.00"
Quote generated successfully
Standard API response wrapper for all successful responses