API Reference
Quote endpoint
Request a quote for a cross-border settlement. Returns a time-bounded quote identifier that can be accepted within the validity window.
Request
POST /v1/quotes
Authorization: Bearer <jwt>
X-Idempotency-Key: 7c2f3-89b4-...
{
"send": { "currency": "USD", "amount": "2000000.00" },
"receive": { "currency": "INR" },
"beneficiary_did": "did:hundi:0x91b7...",
"purpose_code": "P0103"
}Response
{
"quote_id": "qte_01HVKZ5T9X2Q...",
"send": { "currency": "USD", "amount": "2000000.00" },
"receive": { "currency": "INR", "amount": "166240000.00" },
"rate": "83.12000",
"all_in_bps": 145,
"expires_at": "2026-05-06T12:00:00.247Z"
}