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

# List Accounts

`GET /v1/accounts`

List accounts attached to the authenticated organization.

Requires the `accounts:read` scope on the API key.

## Query parameters

- `page` integer — Page number.
- `size` integer — Number of items per page.
- `sort_by` string, nullable — Field to sort by.
- `sort_order` 'asc' | 'desc'
- `domain` string, nullable — Filter by primary company domain (case-insensitive exact match).
- `name` string, nullable — Filter by company name (case-insensitive substring match).

## Response `200`

Successful Response

- PublicPaginationEnvelopePublicAccountOutput
  - `items` PublicAccountOutput[], required — Records on this page.
    - `id` string, uuid, required — Unique identifier of the account.
    - `name` string, nullable — Company name.
    - `domain` string, nullable — Primary company domain.
    - `owner_user_id` string, uuid, nullable — User who owns this account, if any.
    - `owner` PublicUserSummary
      - `id` string, uuid, required — Unique identifier of the user.
      - `name` string, nullable — Display name.
      - `email` string, required — Email address.
    - `first_seen_at` string, date-time, required — When this account was first associated with the organization.
    - `last_seen_at` string, date-time, required — When this account was last touched in the organization.
  - `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.

## Changes

- **2026-08-05** `b390cd1c4e2a` — 2 info
  - added the new optional `query` request parameter `domain`
  - added the new optional `query` request parameter `name`
- **2026-08-04** `467ce2bf692b` — 1 info
  - added the optional property `items/items/owner` to the response with the `200` status

[Change history](https://skmtc.dev/topo/apis/topo-public-api/changes/v1/accounts/get.md)

---

[API](https://skmtc.dev/topo/apis/topo-public-api.md) · [All operations](https://skmtc.dev/topo/apis/topo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/topo/topo-public-api/revisions/0646a72cff02/schema)
