> ## Documentation Index
> Fetch the complete documentation index at: https://docs.manastore.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Order

> Returns detailed information about a specific order

## Get Order Details

`GET /api/v1/orders/{order}`

Returns detailed information about a specific order.

### Path Parameters

| Parameter | Type          | Required | Description         |
| --------- | ------------- | -------- | ------------------- |
| `order`   | string (ULID) | ✅        | The `ulid` in order |

### Responses

| Status             | Description                             |
| ------------------ | --------------------------------------- |
| `200 OK`           | Successful operation                    |
| `401 Unauthorized` | Missing or invalid authentication token |
| `403 Forbidden`    | Access denied                           |
| `404 Not Found`    | Order not found                         |

### 200 — Order Details

```json theme={null}
{
  "id": 12345,
  "ulid": "01J9Z3NDEKTSV4RRFFQ69G5FAV",
  "order_number": "#ORD-12345",
  "fulfillment_status": "completed",
  "payment_status": "completed",
  "subtotal": { "amount": 99.99, "formatted": "€99.99" },
  "conversion_fees": { "amount": 2.5, "formatted": "€2.50" },
  "total": { "amount": 102.49, "formatted": "€102.49" },
  "currency": "EUR",
  "items": [
    {
      "id": 67890,
      "product_name": "Digital Game Key",
      "variant_name": "Standard Edition",
      "quantity": 1,
      "unit_price": { "amount": 59.99, "formatted": "€59.99" },
      "total_price": { "amount": 59.99, "formatted": "€59.99" },
      "created_at": "2023-01-01T12:00:00+00:00",
      "updated_at": "2023-01-01T12:00:00+00:00"
    }
  ],
  "created_at": "2023-01-01T12:00:00+00:00",
  "updated_at": "2023-01-01T12:00:00+00:00"
}
```

### Status Fields

| Field                | Possible Values                                                         |
| -------------------- | ----------------------------------------------------------------------- |
| `fulfillment_status` | `pending`, `processing`, `partially_fulfilled`, `completed`, `refunded` |
| `payment_status`     | `pending`, `completed`                                                  |
