Skip to main content
GET
/
market-data
/
markets
/
{code}
/
halts
List halts for a market (alias)
curl --request GET \
  --url https://api.bluumfinance.com/v1/market-data/markets/{code}/halts \
  --header 'Authorization: Basic <encoded-value>'
{
  "object": "investor",
  "livemode": false,
  "market_code": "<string>",
  "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"
    }
  ],
  "id": "inv_01j9x8m2k7qpzwv3t5r6y8n0ab",
  "created": 1747776000,
  "metadata": {}
}

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

active
boolean
default:false
since
string<date-time>
limit
integer
default:100
Required range: x <= 500

Response

Halts list

Envelope-wrapped halts list (object: market_data).

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

market_code
string
required
halts
object[]
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.