GET
/
calendar
/
dividends
Get dividends calendar
curl --request GET \
  --url https://openapi.ainvest.com/open/calendar/dividends \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "data": [
      {
        "ticker": "<string>",
        "ex_date": "<string>",
        "pay_date": "<string>",
        "amount": 123
      }
    ]
  },
  "status_code": 123,
  "status_msg": "<string>"
}
Asking Claude about dividends income using Ainvest MCP server

Asking Claude about dividends income using Ainvest MCP server

Authorizations

Authorization
string
header
required

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

Query Parameters

date
string
required

The date for which to get dividends, format YYYY-MM-DD

Response

200
application/json

Successful response in standard envelope

The response is of type object.