> 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/locker/check-availability.md).

# Check Availability

Check Availability.

## Check Availability.&#x20;

<mark style="color:blue;">`GET`</mark> `/LockerAvailability/{locker_id}`

#### Headers

| Name                                            | Type            | Description |
| ----------------------------------------------- | --------------- | ----------- |
| secret-key<mark style="color:red;">\*</mark>    | user secret key |             |
| Authorization<mark style="color:red;">\*</mark> | Token           |             |

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

```json
{
  "status": "Success",
  "description": "Locker Availability Fetched Successfully",
  "Available": true
}
```

{% 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/LockerAvailability/2100015346',
  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: Td95Dw6v8BRYmbT50GKNYh5kP3weNMM5th60MpXnIAm5KZ3majX9kIB7tUoME5w9'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

```
