---
title: "List Accounts"
method: GET
path: "/v1/accounts"
---

# List Accounts

`GET /v1/accounts`

List CRM accounts available to the API key's organization.

Requires the **Export** permission (`read` scope). Results use cursor-based
pagination.

## Query parameters

- `name` string, nullable — Filter by account name (case-insensitive partial match)
- `website` string, nullable — Filter by website URL (case-insensitive partial match)
- `owner` string, nullable — Filter by owner name or email (case-insensitive partial match)
- `createdBefore` string, nullable — Upper bound for created date (ISO 8601, e.g. 2025-06-30T00:00:00Z)
- `createdAfter` string, nullable — Lower bound for created date (ISO 8601)
- `lastActivityBefore` string, nullable — Upper bound for last activity date (ISO 8601)
- `lastActivityAfter` string, nullable — Lower bound for last activity date (ISO 8601)
- `limit` integer — Maximum number of results per page (1-50)
- `cursor` string, nullable — Opaque pagination cursor from a previous response

## Response `200`

Successful Response

- ListAccountsResponse
  - `accounts` AccountListItem[], required
    - `accountId` string, required
    - `name` string, nullable
    - `website` string, nullable
    - `owner` AccountOwner
      - `name` string, nullable
      - `email` string, nullable
    - `createdDate` string, date-time, nullable
    - `lastActivityDate` string, date-time, nullable
    - `latestDeal` LatestDeal
      - `dealId` string, required
      - `name` string, nullable
      - `stage` string, nullable
      - `amount` number, nullable
      - `closeDate` string, date-time, nullable
  - `pagination` PaginationInfo, required — Cursor-based pagination metadata returned alongside list responses. All public-API list endpoints emit the same shape: pass ``next_cursor`` back as the ``cursor`` query parameter to fetch the next page; check ``has_more`` to know whether more pages exist.
    - `nextCursor` string, nullable
    - `hasMore` boolean

## Other responses

- `422` — Validation Error

---

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