> 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/search-via-waybill-number.md).

# Search via Waybill Number&#x20;

Search Order via waybill Number

## Endpoint => /orders/search/{waybillNumber}

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

#### 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   |

#### Params

| Name          | Type   | Description                                                                |
| ------------- | ------ | -------------------------------------------------------------------------- |
| waybillNumber | String | The client's unique identifier for a particular order on their own system. |

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

```json
{
    "status": "Success",
    "description": "Order Fetch Successfully",
    "data": {
        "orderNumber": "KMXH15082440",
        "waybillNumber": "74U839SUSY7"
    }
}
```

{% endtab %}

{% tab title="401 Unauthorized" %}

```
{
    "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/search/64-UU0P8-NG',
  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;

```

{% hint style="info" %}
The startDate and endDate is based on order Date.
{% endhint %}
