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

# List Collections

> Retrieve all collections owned by the authenticated API key.

## Overview

Returns an array of all collections belonging to the authenticated key, including document counts.

## Request

No parameters required.

<RequestExample>
  ```bash theme={null}
  curl https://api.okrapdf.com/v1/collections \
    -H "Authorization: Bearer okra_YOUR_KEY"
  ```
</RequestExample>

### Response (200)

```json theme={null}
{
  "collections": [
    {
      "id": "col-40da068481cf4f248853507cba6be611",
      "name": "Q4 Earnings",
      "description": "Quarterly earnings reports",
      "visibility": "private",
      "created_at": "2025-01-15T08:30:00Z",
      "document_count": 12
    }
  ]
}
```
