Merchant API
Retrieve an order
api
get
/api/orders/{order_id}

Retrieve an order

Retrieve the details of an order that has been created. Provide the unique order ID, and the corresponding order information is returned.

Request

Path Parameters
Path Parameters
Header Parameters
Header Parameters

Response

Order retrieved

Response body
Body object 
Was this page helpful?
GET
/api . /orders . /{order_id} . 
Revolut-Api-Version *header
Parameters
curl -L -g -X GET 'https://merchant.revolut.com/api/orders/{order_id}' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <yourSecretApiKey>'
Response body samples
{
"id": "6516e61c-d279-a454-a837-bc52ce55ed49",
"token": "0adc0e3c-ab44-4f33-bcc0-534ded7354ce",
"type": "payment",
"state": "pending",
"created_at": "2023-09-29T14:58:36.079398Z",
"updated_at": "2023-09-29T14:58:36.079398Z",
"amount": 500,
"currency": "GBP",
"outstanding_amount": 500,
"capture_mode": "automatic",
"checkout_url": "https://checkout.revolut.com/payment-link/0adc0e3c-ab44-4f33-bcc0-534ded7354ce",
"enforce_challenge": "automatic"
}