GET
/
securities
/
stock
/
financials
/
dividends
Get dividends for a specified stock
curl --request GET \
  --url https://openapi.ainvest.com/open/securities/stock/financials/dividends \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "declaration_date": "<string>",
      "ex_date": "<string>",
      "pay_date": "<string>",
      "amount": 123
    }
  ],
  "status_code": 123,
  "status_msg": "<string>"
}
ETFs are not supported yet

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your key. Get the key here

Query Parameters

ticker
string
required

US stock market ticker symbol, e.g. AAPL, TSLA, etc.

Response

200
application/json

Successful response in standard envelope.

The response is of type object.