---
title: "List Contact Lists"
method: GET
path: "/v1/contact-lists"
tags: ["contacts"]
---

# List Contact Lists

`GET /v1/contact-lists`

List the contact lists in the workspace.

Requires the `contact_lists:read` scope on the API key.

## Query parameters

- `page` integer — Page number.
- `size` integer — Number of items per page.
- `sort_by` 'created_at' | 'updated_at' | 'name'
- `sort_order` 'asc' | 'desc'
- `name` string, nullable — Filter by list name (exact match).
- `created_at_before` string, date-time, nullable — Return lists created strictly before this timestamp.
- `created_at_after` string, date-time, nullable — Return lists created strictly after this timestamp.

## Response `200`

Successful Response

- PublicPaginationEnvelopeContactListOutput
  - `items` ContactListOutput[], required — Records on this page.
    - `id` string, uuid, required — Unique identifier.
    - `name` string, nullable, required — Name of the list.
    - `default_sequence_template_id` string, uuid, nullable, required — Default sequence template for new entries.
    - `default_sequence_template` PublicSequenceTemplateSummary
      - `id` string, uuid, required — Unique identifier of the sequence template.
      - `name` string, required — Template name.
    - `entries_count` integer, required — Current number of entries in the list.
    - `created_at` string, date-time, required — When the list was created.
    - `updated_at` string, date-time, required — When the list last changed.
  - `total_count` integer, required — Total number of records matching the query.
  - `total_pages` integer, required — Total number of pages.
  - `has_more` boolean, required — Whether more pages remain after the current one.

---

[API](https://skmtc.net/topo/apis/topo-public-api.md) · [All operations](https://skmtc.net/topo/apis/topo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/topo/topo-public-api/revisions/80f4fd40b75e/schema)
