---
title: "List Accounts"
method: POST
path: "/api/v3/accounts/list"
tags: ["Accounts"]
---

# List Accounts

`POST /api/v3/accounts/list`

## Request body

- AccountListRequest
  - `limit` integer
  - `cursor` string, nullable
  - `search` string, nullable
  - `sort` AccountListSort
    - `field` 'name' | 'population' | 'signals'
    - `direction` 'asc' | 'desc'
  - `filters` AccountListFilters
    - `territory_ids` string[], nullable
    - `exclude_territory_ids` string[], nullable
    - `account_types` string[], nullable
    - `states` string[], nullable
    - `counties` string[], nullable
    - `cities` string[], nullable
    - `population_min` integer, nullable
    - `population_max` integer, nullable
    - `has_signals` boolean, nullable

## Response `200`

Successful Response

- AccountListResponse
  - `items` AccountListItem[], required
    - `institution_id` string, required
    - `name` string, nullable, required
    - `account_type` string, required
    - `city` string, nullable, required
    - `state` string, nullable, required
    - `population` number, nullable, required
    - `signal_count` integer
    - `contact_count` integer
    - `contacts` AccountContactPreview[]
      - `id` string, uuid, required
      - `full_name` string, nullable
    - `territories` AccountTerritoryResponse[]
      - `id` string, uuid, required
      - `name` string, required
    - `crms` AccountCRMResponse[]
      - `crm_type` string, required
      - `crm_id` string, required
  - `total` integer, required
  - `has_more` boolean, required
  - `next_cursor` string, nullable

## Other responses

- `422` — Validation Error

---

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