---
title: "Get Accounts for Entity"
method: GET
path: "/api/v2/entities/{entity_id}/accounts"
tags: ["Accounts"]
---

# Get Accounts for Entity

`GET /api/v2/entities/{entity_id}/accounts`

Get a list of all `Accounts` that belong to a specific `Entity`. This `Entity` represents your organization itself, or an individual customer of your organization.

## Query parameters

- `limit` integer
- `order` 'asc' | 'desc'
- `next` string, nullable
- `previous` string, nullable

## Response `200`

OK

- PaginatedAccountResponse
  - `_sv` 'PaginatedAccountResponse:v1' — Version
  - `data` Account[], required — List of Account
    - `id` string, uuid, required — Unique ID for the `Account`.
    - `entity_id` string, uuid, required — ID for the `Entity` that owns the `Account`.
    - `is_active` boolean, required — Indicates whether the `Account` is active.
    - `created_dt` string, date-time, required — Datetime when the `Account` was created. ISO 8601 timestamp.
    - `jurisdiction` 'BASELINE' | 'US', required
    - `brokerage_account_id` string, nullable — ID of the brokerage account associated with the `Account`.
  - `pagination_metadata` BaseOpenApiPaginationMetadata, required
    - `previous` string — Cursor for previous page
    - `next` string — Cursor for next page

## Other responses

- `422` — Unprocessable Entity
- `default` — Default error response

## Changes

- **2026-06-18** `142af68e5d3c` — 1 breaking, 2 warning, 4 info
  - the response's body type changed from no type to `object` for status `200`
  - deleted the `query` request parameter `page`
  - deleted the `query` request parameter `page_size`
  - removed `#/components/schemas/PaginatedAccountResponse, subschema #1` from the response body `oneOf` list for the response status `200`
  - …3 more

[Change history](https://skmtc.dev/dinaricrypto/apis/dinari-enterprise-api/changes/api/v2/entities/:entity_id/accounts/get.md)

---

[API](https://skmtc.dev/dinaricrypto/apis/dinari-enterprise-api.md) · [All operations](https://skmtc.dev/dinaricrypto/apis/dinari-enterprise-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/dinaricrypto/dinari-enterprise-api/revisions/5403e9118588/schema)
