---
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.

---

[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/versions/6e9ca9d5acac/schema)
