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

# List Contact Entries

`GET /v1/contact-entries`

List entries inside a contact list.

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' | 'email' | 'last_name'
- `sort_order` 'asc' | 'desc'
- `contact_list_id` string, uuid, required — ID of the contact list to scope the result to.
- `email` string, nullable — Filter by email (exact match).
- `company_domain` string, nullable — Filter by company domain (exact match).
- `external_contact_id` string, nullable — Filter by external CRM contact identifier (exact match).
- `enriched` boolean, nullable — Filter by enrichment state.
- `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

- PublicPaginationEnvelopeContactEntryOutput
  - `items` ContactEntryOutput[], required — Records on this page.
    - `id` string, uuid, required — Unique identifier.
    - `contact_list_id` string, uuid, required — ID of the list this entry belongs to.
    - `contact_id` string, uuid, nullable, required — ID of the contact this entry resolved to, once matched.
    - `external_contact_id` string, nullable, required — External CRM contact identifier when supplied at import.
    - `first_name` string, nullable, required — First name.
    - `last_name` string, nullable, required — Last name.
    - `email` string, nullable, required — Email.
    - `linkedin_url` string, nullable, required — LinkedIn URL.
    - `company_name` string, nullable, required — Employer name.
    - `company_domain` string, nullable, required — Employer domain.
    - `job_title` string, nullable, required — Job title.
    - `phone` string, nullable, required — Phone number.
    - `description` string, nullable, required — Free-form notes.
    - `location` string, nullable, required — Person's location.
    - `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)
