> For the complete documentation index, see [llms.txt](https://fez-delivery-co.gitbook.io/fezcorporate-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fez-delivery-co.gitbook.io/fezcorporate-api-docs/api-endpoints/orders/get.md).

# Get

Get Order

## Endpoint => /orders/{order\_id}

<mark style="color:blue;">`GET`</mark> `/orders/{order_id}`

#### Headers

| Name                                             | Type   | Description       |
| ------------------------------------------------ | ------ | ----------------- |
| Authorization <mark style="color:red;">\*</mark> | String | Your Bearer Token |
| secret-key<mark style="color:red;">\*</mark>     | String | Your Secret Key   |

{% tabs %}
{% tab title="200 Success" %}

```json
{
    "status": "Success",
    "description": "Details Fetched Successfully",
    "orderDetails": [
        {
            "id": 28155,
            "clientAddress": "86 Olonode St, Alagomeji-Yaba, Lagos 101245, Lagos, Nigeria",
            "orderNo": "6XUK13072630",
            "delivery_OTP": null,
            "pickUpDate": null,
            "quantity": 1,
            "dispatchDate": null,
            "recipientName": "Mrs Chinyere Obetta",
            "recipientAddress": "Lagos Nigeria",
            "recipientEmail": null,
            "recipient_phone": "+2348056523441(Alt:+2347065408830)",
            "recipientPhone": "+2348056523441",
            "itemDescription": "Clothes",
            "statusDescription": null,
            "orderStatus": "Pending Payment",
            "deliveryDate": null,
            "paymentMode": null,
            "paymentStatus": "unpaid",
            "cost": "3398.36",
            "dropZoneName": "Default",
            "returnReason": null,
            "returnDate": null,
            "recievedBySignature": null,
            "additionalNote": null,
            "orderVerified": "pending",
            "thirdparty": null,
            "thirdparty_sendersName": null,
            "thirdparty_sendersPhone": null,
            "recipientState": "Imo",
            "senderState": null,
            "created_at": "2026-07-13T10:53:30.000000Z",
            "recipientAlternatePhone": null,
            "createdBy": "C-21833-665",
            "OrgRep": "G-DA5b-2Ce5",
            "orderDate": "2026-07-13 11:53:30",
            "weight": "2",
            "sub_organization_id": null,
            "manifest": {
                "orderNo": "6XUK13072630",
                "requestType": "local",
                "pickUpState": "Lagos",
                "dropOffState": "Lagos",
                "pickUpZone": "Default",
                "dropOffZone": "Default",
                "displayZone": false,
                "PickUpHub": "Lagoswa",
                "DropOffHub": "Hq",
                "recipientName": "Mrs Chinyere Obetta",
                "recipientPhone": "+2348056523441 (Alt:+2347065408830)",
                "recipientAddress": "Lagos Nigeria",
                "description": "Clothes",
                "sendersName": "Inya Johnson",
                "fragile": false
            },
            "organizationUser": {
                "fullname": "Admin",
                "user_id": "G-DA5b-2Ce5"
            },
            "subOrganization": null,
            "cps": null,
            "currency": "NGN",
            "currencySymbol": "₦",
            "client": {
                "id": 9081,
                "clientId": "C-21833-665",
                "fullName": "Inya Johnson",
                "address": "23 Association Close Ogudu",
                "phone": "08134822658",
                "email": "intoajohnson@gmail.com",
                "status": "",
                "type": "business",
                "logo": "https://media.licdn.com/dms/image/v2/C4D03AQE7Q5ScMTKYKQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1597936408421?e=1747872000&v=beta&t=wp8KuBFZXlvhDl2dy60WVWcsD6unrY0Cu-K4NuCKDQ0",
                "businessType": {
                    "id": 7,
                    "name": "Logistics"
                }
            },
            "manifest_print_out_url": null,
            "is_item_cod": 0,
            "cod_amount": null,
            "insured": false,
            "insurance_status": "Not Insured",
            "timezone": "Africa/Lagos"
        }
    ]
}
```

{% endtab %}

{% tab title="401 Unauthorized" %}

```json
{
    "status": "Error",
    "description": "Organization Secret Key is Required"
}
```

{% endtab %}
{% endtabs %}

```php
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://apisandbox.fezdelivery.co/v1/orders/6XUK13072630',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'secret-key: {{Your Secret Key}}'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

```
