> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/client/get-schedule-availability.md).

# Get Schedule Availability

Use the `GET /client/schedule-availability/` endpoint to retrieve the available schedule slots for a client. This provides the availability details for a client to book services or appointments.

***

#### Parameters

This endpoint does not require any parameters.

***

#### Responses

**200 OK**

**Description:** The available schedule slots were successfully retrieved.

**Example Response:**

```json
{
  "availability": [
    {
      "date": "2024-11-23",
      "slots": [
        "08:00 AM - 10:00 AM",
        "10:30 AM - 12:30 PM"
      ]
    },
    {
      "date": "2024-11-24",
      "slots": [
        "09:00 AM - 11:00 AM",
        "01:00 PM - 03:00 PM"
      ]
    }
  ]
}
```
