---
title: "Get Dividend Information for an Asset"
method: GET
path: "/v1/assets/{symbol}/dividends"
tags: ["Assets"]
---

# Get Dividend Information for an Asset

`GET /v1/assets/{symbol}/dividends`

This endpoint retrieves the latest dividend information for a specific asset, including dividend yield, payment history, and upcoming payment dates.

**Dividend Yield**

The dividend yield is calculated based on the past year's worth of dividend payments and the current stock price.

**Payout Frequencies**

Below outline the day ranges for each payout frequency:

| Frequency         | Average Days Between Dividends |
|-------------------|:------------------------------:|
| **none**          | N/A                            |
| **monthly**       | 25-35 days                     |
| **quarterly**     | 80-100 days                    |
| **semi-annually** | 160-200 days                   |
| **yearly**        | 345-385 days                   |
| **irregular**     | Outside defined ranges         |

For caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).

## Path parameters

- `symbol` string, required

## Response `200`

OK

- DividendInfo
  - `ticker` string, required — The stock ticker associated with the asset.
  - `dividendYield` string, required — The dividend yield, represented as a string-encoded decimal with up to 18 digits after the decimal point. ("0.05" is the equivalent of 5%)
  - `payoutFrequency` 'monthly' | 'quarterly' | 'semi-annually' | 'annually' | 'irregular' | 'none', required — The frequency at which dividends are paid to shareholders.
  - `lastCashAmount` string, required — The last dividend payment amount per share, represented as a string-encoded decimal with up to 18 digits after the decimal point.
  - `lastPaymentDate` string, date, required — The date of last dividend payment in YYYY-MM-DD format.
  - `timestamp` number, required — The Unix timestamp in milliseconds when the data was last updated.

## Other responses

- `400` — One of the request parameters is invalid. Please see the returned message and documentation for details.
- `401` — Missing or invalid API key.
- `404` — The provided asset symbol does not exist and cannot be found. Please see the returned message and documentation for details.
- `429` — The account has exceeded its rate limits. Please see the returned message and documentation for details.
- `500` — An internal server error occurred. Please see the returned message and documentation for details.

---

[API](https://skmtc.net/ondo/apis/gm-backend-api.md) · [All operations](https://skmtc.net/ondo/apis/gm-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ondo/gm-backend-api/revisions/12953a4908b2/schema)
