---
title: "Get Dividend Payments"
method: GET
path: "/api/v2/accounts/{account_id}/dividend_payments"
tags: ["Accounts"]
---

# Get Dividend Payments

`GET /api/v2/accounts/{account_id}/dividend_payments`

Get dividend payments made to the `Account` from dividend-bearing stock holdings.

## Query parameters

- `start_date` string, date, required
- `end_date` string, date, required
- `stock_id` string, uuid, nullable
- `limit` integer
- `order` 'asc' | 'desc'
- `next` string, nullable
- `previous` string, nullable

## Response `200`

OK

- PaginatedDividendPaymentResponse
  - `_sv` 'PaginatedDividendPaymentResponse:v1' — Version
  - `data` DividendPayment[], required — List of DividendPayment
    - `stock_id` string, uuid, required — ID of the `Stock` for which the dividend was paid.
    - `payment_date` string, date, required — Date the dividend was distributed to the account. ISO 8601 format, YYYY-MM-DD.
    - `amount` number, required — Amount of the dividend paid.
    - `currency` string, required — Currency in which the dividend was paid. (e.g. USD)
  - `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

---

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