Skip to main content
GET
/
market-data
/
markets
/
{code}
/
status
Get full live market status (alias)
curl --request GET \
  --url https://api.bluumfinance.com/v1/market-data/markets/{code}/status \
  --header 'Authorization: Basic <encoded-value>'
{
  "object": "investor",
  "livemode": false,
  "code": "XNAS",
  "timezone": "America/New_York",
  "is_open": true,
  "today": {
    "pre_open": "2023-11-07T05:31:56Z",
    "regular_open": "2023-11-07T05:31:56Z",
    "regular_close": "2023-11-07T05:31:56Z",
    "post_close": "2023-11-07T05:31:56Z",
    "is_holiday": true,
    "holiday_name": "<string>",
    "is_early_close": true,
    "early_close_at": "2023-11-07T05:31:56Z"
  },
  "active_halts": [
    {
      "id": "<string>",
      "started_at": "2023-11-07T05:31:56Z",
      "symbol": "<string>",
      "halt_code": "<string>",
      "reason": "<string>",
      "expected_resume_at": "2023-11-07T05:31:56Z"
    }
  ],
  "extended_hours_supported": true,
  "id": "inv_01j9x8m2k7qpzwv3t5r6y8n0ab",
  "created": 1747776000,
  "metadata": {},
  "common_code": "NASDAQ",
  "name": "<string>",
  "next_open": "2023-11-07T05:31:56Z",
  "next_close": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

code
string
required

Response

Market status

Envelope-wrapped market status (object: market_status).

object
string
required

The resource type discriminator.

Example:

"investor"

livemode
boolean
required

Whether this resource was created against a live API key. Test-mode keys always return false.

Example:

false

code
string
required
Example:

"XNAS"

timezone
string
required
Example:

"America/New_York"

trading_session_status
enum<string>
required
Available options:
PRE_OPEN,
OPEN,
EXTENDED,
HALTED,
PRE_CLOSE,
CLOSED,
REQUEST_REJECTED
is_open
boolean
required

True only when trading_session_status is OPEN

today
object
required
active_halts
object[]
required
extended_hours_supported
boolean
required
id
string

Prefixed public id (e.g. inv_…, ord_…, dep_…).

Example:

"inv_01j9x8m2k7qpzwv3t5r6y8n0ab"

created
integer | null

Unix-seconds timestamp of resource creation.

Example:

1747776000

metadata
object

Partner-set key/value map for cross-referencing.

common_code
string | null
Example:

"NASDAQ"

name
string
next_open
string<date-time> | null
next_close
string<date-time> | null