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

# List contact lists

> Retrieve all contact lists for the tenant

Returns all contact lists belonging to your tenant, ordered by creation date descending.

<CodeGroup>
  ```bash curl theme={null}
  curl -X GET https://api.agentic-os.com/api/v1/contact-lists \
    -H "Authorization: Bearer $AGENTIC_OS_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.agentic-os.com/api/v1/contact-lists",
      headers={"Authorization": f"Bearer {API_KEY}"},
  )
  print(response.json())
  ```

  ```javascript Node theme={null}
  const response = await fetch("https://api.agentic-os.com/api/v1/contact-lists", {
    method: "GET",
    headers: { Authorization: `Bearer ${API_KEY}` },
  });
  const data = await response.json();
  console.log(data);
  ```
</CodeGroup>

### Response

```json theme={null}
[
  {
    "id": "33333333-3333-3333-3333-333333333333",
    "tenantId": "990e8400-e29b-41d4-a716-446655440000",
    "name": "Q3 Target Leads",
    "metadata": {
      "source": "hubspot_export"
    },
    "createdAt": "2026-06-01T09:00:00.000Z",
    "updatedAt": "2026-06-01T09:00:00.000Z"
  }
]
```
