Skip to main content
GET
/
orders
/
{id}
curl -X GET 'https://app.filemonk.com/api/v1/external/orders/a1b2c3d4-e5f6-7890-abcd-ef1234567890' \
  -H 'X-Auth-Token: fm_api_key_your_key_here'
{
  "order": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "name": "#1042",
    "email": "customer@example.com",
    "phone": "+1234567890",
    "financial_status": "paid",
    "fulfillment_status": "fulfilled",
    "total_price": "29.99",
    "currency": "USD",
    "created_at": "2026-03-01T14:30:00Z",
    "download_count": 3
  }
}

Path parameters

id
string
required
The order’s unique identifier (UUID).

Response

order
object
required
The order object.
curl -X GET 'https://app.filemonk.com/api/v1/external/orders/a1b2c3d4-e5f6-7890-abcd-ef1234567890' \
  -H 'X-Auth-Token: fm_api_key_your_key_here'
{
  "order": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "name": "#1042",
    "email": "customer@example.com",
    "phone": "+1234567890",
    "financial_status": "paid",
    "fulfillment_status": "fulfilled",
    "total_price": "29.99",
    "currency": "USD",
    "created_at": "2026-03-01T14:30:00Z",
    "download_count": 3
  }
}