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

# List Account Entries

`GET /v1/account-entries`

List entries inside an account list.

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' | 'domain'
- `sort_order` 'asc' | 'desc'
- `account_list_id` string, uuid, required — ID of the account list to scope the result to.
- `name` string, nullable — Filter by company name (exact match).
- `domain` string, nullable — Filter by company domain (exact match).
- `created_at_before` string, date-time, nullable — Return entries created strictly before this timestamp.
- `created_at_after` string, date-time, nullable — Return entries created strictly after this timestamp.

## Response `200`

Successful Response

- PublicPaginationEnvelopeAccountEntryOutput
  - `items` AccountEntryOutput[], required — Records on this page.
    - `id` string, uuid, required — Unique identifier.
    - `account_list_id` string, uuid, required — ID of the list this entry belongs to.
    - `account_id` string, uuid, nullable, required — ID of the account this entry resolved to, once matched.
    - `name` string, required — Company name.
    - `domain` string, required — Primary company domain.
    - `created_at` string, date-time, required — When the entry was created.
    - `updated_at` string, date-time, required — When the entry 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)
