---
title: "List all contacts"
method: GET
path: "/contacts"
tags: ["Phone Book Entries"]
---

# List all contacts

`GET /contacts`

Retrieves a paginated list of all contacts for the authenticated user's account.

## Query parameters

- `q` string
- `fields` string
- `sort` string
- `skip` number
- `limit` number
- `ids` union
  - string
  - string[]

## Response `200`

List of contacts retrieved successfully.

- object
  - `results` object[], required — List of contacts
    - `_id` string, required — Contact ID
    - `accountId` string, required — Account ID
    - `fullName` string, required — Full name of the contact
    - `firstName` string — First name of the contact
    - `lastName` string — Last name of the contact
    - `nickname` string — Nickname of the contact
    - `title` string — Title of the contact (e.g. Dr., Mr., Mrs.)
    - `company` string — Company name
    - `picture` object — Contact pictures
      - `thumbnail` string — Thumbnail URL of the picture
      - `regular` string — Regular size URL of the picture
      - `large` string — Large size URL of the picture
    - `emails` string[] — List of email addresses
    - `phones` string[] — List of phone numbers
    - `preferredContactMethod` string — Preferred contact method
    - `email` string — Primary email address
    - `phone` string — Primary phone number
    - `notes` string — Additional notes about the contact
  - `count` number, required — Total number of contacts matching the query
  - `fields` string, required — Fields included in the response
  - `limit` number, required — Number of records to return
  - `skip` number, required — Number of records to skip

## Other responses

- `401` — Unauthorized.
- `403` — Forbidden.

---

[API](https://skmtc.net/guesty/apis/guesty-open-api.md) · [All operations](https://skmtc.net/guesty/apis/guesty-open-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/guesty/guesty-open-api/versions/7c62644070f2/schema)
