Quotes

Create a quote

POST
/v1/quotes

The endpoint locks a rate for one order. The quote expires after two minutes.

The rate includes Pulse's pricing adjustment and applicable network conversion costs. No separate fee changes either quoted amount.

Authorization

ApiKeyAuth
X-API-Key<token>

The API key identifies your business. Requests do not include a business ID.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/quotes" \  -H "Content-Type: application/json" \  -d '{    "source_currency": "string",    "destination_currency": "string",    "network": "BASE"  }'
{  "status": true,  "data": {    "id": "0198e2c1-8f7a-7c2d-b3e1-9a0f4d6c2b55",    "rate": "1538.46",    "source_amount": "150000",    "destination_amount": "97.499512",    "expires_at": "2026-07-30T11:42:00Z"  }}