> 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/delivery-time-estimate.md).

# Delivery Time Estimate

Delivery Time Estimate

## Endpoint => /delivery-time-estimate

<mark style="color:green;">`POST`</mark> `/`delivery-time-estimate

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

#### Request Body

| Name                                             | Type                                | Description                                                               |
| ------------------------------------------------ | ----------------------------------- | ------------------------------------------------------------------------- |
| delivery\_type<mark style="color:red;">\*</mark> | String\|Enum: import, export, local | Its a string which takes any of these 3 options \[import, export, local]. |
| pick\_up\_state                                  | String                              | A valid state available within fez delivery coverage                      |
| drop\_off\_state                                 | String                              | A valid state available within fez delivery coverage                      |

{% tabs %}
{% tab title="201: Created Success" %}

```json
{
  "status": "Success",
  "description": "Update Batch Request Processed",
  "data": {
    "eta": "2 - 5 day(s)"
  }
}
```

{% endtab %}

{% tab title="401 Unauthorized" %}

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

{% endtab %}

{% tab title="422 Validation Error" %}

```json
{
    "status": "Error",
    "description": "The delivery type field is required."
}
```

{% endtab %}
{% endtabs %}

```php
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://apisandbox.fezdelivery.co/v1/delivery-time-estimate?delivery_type=local&pick_up_state=edo&drop_off_state=lagos',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS =>'[
    'delivery_type':'local',
    'pick_up_state':'edo',
    'drop_off_state':'lagos'
  ]',
  CURLOPT_HTTPHEADER => array(
    'secret-key: {{Your Secret Key}}'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

```
