Docs
Orders

Get an order

GET
/v1/orders/{id}

Reads one of your orders, either flow. Scoped to your business; another business's order id returns 404, not 403.

destination.amount is quoted, not delivered. Reconcile the delivered amount from the order.completed webhook.

Authorization

ApiKeyAuth
X-API-Key<token>

Your API key. Identifies your business; you never send a business id.

In: header

Path Parameters

id*string

The order id returned when you created the order.

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/orders/0198e2d0-1c4a-7f3b-9a2e-6b1d5c8e0f21"
{  "status": true,  "data": {    "id": "0198e2d0-1c4a-7f3b-9a2e-6b1d5c8e0f21",    "reference": "piggy-txn-88213",    "type": "onramp",    "status": "processing",    "rate": "1538.46",    "source": {      "currency": "NGN",      "amount": "150000"    },    "destination": {      "currency": "USDT",      "network": "POLYGON",      "amount": "97.50"    },    "funding_account": {      "account_name": "Shiga/Ada Obi",      "account_number": "9901234567",      "bank_name": "Rubies MFB",      "expires_at": "2026-07-28T10:32:00Z"    },    "created_at": "2026-07-28T10:02:00Z",    "updated_at": "2026-07-28T10:12:00Z"  }}