Skip to Content
OrdersGet Single Order

Get one order

GET/v3/orders/:orderId

Description

Get a previously created order by its orderId. This endpoint is useful if you want to get the details (including the status) of a specific order.

Order Statuses

  • complete: The order was successfully processed.
  • expired: The order expired.
  • failed: The order failed to be processed.
  • inProgress: The order is still being processed.
  • refunded: The order was refunded.

Header Parameters

NameDescriptionRequiredExample
App-NameApp-Name for the authorizationyesacme-inc
App-VersionApp-Version for the authorizationno23.5.5
ForwardedIf you are proxying requests to the API, you must include the "Forwarded" header with the original request IP address. This is used for geolocation availability purposes.no
User-AgentUser-Agent for the authorizationnoAgentName/1.0.0

Path Parameters

NameDescriptionRequired

Response

Here is an example of a successful response with a complete status:

RESPONSE
{
  "amount": {
    "assetId": "ETH",
    "value": "0.1428498"
  },
  "createdAt": "2022-07-26T04:10:49.087Z",
  "fromAddress": "0xb9610EA77d7EAfEa169896e123F0704B3F0F6F55",
  "fromTransactionId": "0xc1cb0cbe6db68347d7faa2280f1251872a155f6558451365b8309b6a92935004",
  "id": "AROzE5pqalJ1nVY",
  "message": "",
  "pairId": "ETH_CRV",
  "payInAddress": "fake-receive-address-71cfe1c7b2113fb5",
  "providerOrderId": "0xc1cb0cbe6db68347d7faa2280f1251872a155f6558451365b8309b6a92935004",
  "rateId": "",
  "toAddress": "0xb9610EA77d7EAfEa169896e123F0704B3F0F6F55",
  "toTransactionId": "0xc1cb0cbe6db68347d7faa2280f1251872a155f6558451365b8309b6a92935004",
  "updatedAt": "2022-07-26T04:15:05.706Z",
  "status": "complete"
}
Last updated on