Skip to main content
GET
/
market-data
/
assets
/
{symbol}
/
dividends
List dividend history
curl --request GET \
  --url https://api.bluumfinance.com/v1/market-data/assets/{symbol}/dividends \
  --header 'Authorization: Basic <encoded-value>'
{
  "object": "list",
  "url": "/v1/investors/inv_…/deposits",
  "has_more": false,
  "data": [
    {
      "object": "investor",
      "livemode": false,
      "ex_date": "2023-12-25",
      "currency": "<string>",
      "source": "<string>",
      "id": "inv_01j9x8m2k7qpzwv3t5r6y8n0ab",
      "created": 1747776000,
      "metadata": {},
      "declaration_date": "2023-12-25",
      "record_date": "2023-12-25",
      "pay_date": "2023-12-25",
      "cash_amount": 123,
      "description": "<string>",
      "status": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using the API Key as username and API Secret as password.

Path Parameters

symbol
string
required

Query Parameters

market
string
from
string<date-time>
to
string<date-time>
limit
integer
Required range: 1 <= x <= 500

Response

List of dividends

List envelope. data holds the page of items; each item is itself wrapped in a ResourceEnvelope.

object
enum<string>
required
Available options:
list
url
string
required

The endpoint path that produced this list.

Example:

"/v1/investors/inv_…/deposits"

has_more
boolean
required

Whether more results exist beyond data.

Example:

false

data
object[]
required