---
title: "List Account Lists"
method: GET
path: "/v1/account-lists"
tags: ["accounts"]
---

# List Account Lists

`GET /v1/account-lists`

List the account lists in the workspace.

Requires the `account_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

- PublicPaginationEnvelopeAccountListOutput
  - `items` AccountListOutput[], required — Records on this page.
    - `id` string, uuid, required — Unique identifier.
    - `name` string, required — Name of the list.
    - `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/versions/6e9ca9d5acac/schema)
