Skip to main content
GET
/
market-data
/
markets
/
{code}
/
calendar
Get market calendar
curl --request GET \
  --url https://service.bluumfinance.com/v1/market-data/markets/{code}/calendar \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "data": {
    "code": "XNAS",
    "year": 2026,
    "holidays": [
      {
        "date": "2026-07-03",
        "name": "Independence Day",
        "type": "FULL",
        "earlyClose": "13:00"
      }
    ],
    "commonCode": "NASDAQ",
    "tradingHours": {
      "open": "09:30",
      "close": "16:00"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.bluumfinance.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

code
string
required

Query Parameters

year
integer

Calendar year (defaults to current year)

Example:

2026

Response

Market calendar

status
string
Example:

"success"

data
object