> ## Documentation Index
> Fetch the complete documentation index at: https://developer.audiohook.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List playlists

## 📄 Get All Playlists

Returns a list of all playlists for a company.

### 📤 Request Example

```bash theme={null}
curl -X GET https://betaapi.audiohook.com/v2/companies/:companyUUID/playlists?page=0&size=10 \
  -H "Authorization: Bearer ${API_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "request_headers": [
      { "name": "X-Request-Header", "value": "Header value" }
    ]
  }'
```

### 🌐 HTTP Request

```http theme={null}
GET /v2/companies/:companyUUID/playlists
```

### 🧾 Query Parameters

| Parameter | Default | Type   | Description                       |
| --------- | ------- | ------ | --------------------------------- |
| size      | 30      | int    | Total number of playlists.        |
| page      | 0       | int    | Page of results.                  |
| type      | —       | string | Filter by playlist type.          |
| ids       | —       | string | Playlist IDs separated by commas. |

***
