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

# List Accounts

`GET /accounts`

Returns a paginated list of accounts the authenticated user has access to. Results can be filtered by name.

## Query parameters

- `limit` integer
- `page` integer
- `include` string[]
- `filter[name]` string

## Response `200`

Success

- object
  - `has_more` boolean — Indicates if there are more results available beyond the current page.
  - `data` Account[]
    - `id` string, uuid, required — UUID of the account
    - `name` string, required — Name of the account
    - `website` string, nullable — Website URL for the account
    - `billing_address` Address
      - `address_line_1` string, required — First line of the address
      - `address_line_2` string, nullable — Second line of the address (optional)
      - `locality` string, required — City or locality
      - `postal_code` string, required — Postal code
      - `administrative_area` Jurisdiction — A geographic jurisdiction (country, state/province, locality, etc.) returned in API responses. Always includes both id and name.
        - `id` string, uuid, required — ID of the jurisdiction
        - `name` string, required — Name of the jurisdiction
      - `country` Jurisdiction — A geographic jurisdiction (country, state/province, locality, etc.) returned in API responses. Always includes both id and name.
        - `id` string, uuid, required — ID of the jurisdiction
        - `name` string, required — Name of the jurisdiction

## Other responses

- `401` — Unauthenticated
- `403` — Forbidden - User does not have access

---

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