Skip to main content
GET
/
api
/
market-data
/
calendar
/
finance
Get financial calendar
curl --request GET \
  --url https://openapi.fcontext.com/api/market-data/calendar/finance \
  --header 'x-api-key: <api-key>'
{
  "calendar": {
    "date": "<string>",
    "list": [
      {
        "date": "<string>",
        "count": 123,
        "infos": [
          {
            "symbol": "<string>",
            "market": "<string>",
            "content": "<string>",
            "counterName": "<string>",
            "eventType": "<string>",
            "datetime": "<string>",
            "star": 123
          }
        ]
      }
    ],
    "nextDate": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Financial Context key generated from account settings. Send it as x-api-key: <key>.

Query Parameters

category
string
default:report

Event type: report, dividend, split, ipo, or macrodata; numeric values 0-7 are also accepted.

start
string<date>

Start date YYYY-MM-DD. Defaults to 3 days before the end date when omitted.

end
string<date>

End date YYYY-MM-DD. Defaults to the current date when omitted.

market
string

Optional market code: only US is supported.

Response

Financial calendar

calendar
object