Skip to main content
GET
/
market-data
/
markets
List available markets (alias)
curl --request GET \
  --url https://api.bluumfinance.com/v1/market-data/markets \
  --header 'Authorization: Basic <encoded-value>'
{
  "object": "list",
  "url": "/v1/investors/inv_…/deposits",
  "has_more": false,
  "data": [
    {
      "object": "investor",
      "livemode": false,
      "code": "XNSA",
      "name": "Nigerian Stock Exchange",
      "country": "NG",
      "currency": "NGN",
      "timezone": "Africa/Lagos",
      "status": "active",
      "id": "inv_01j9x8m2k7qpzwv3t5r6y8n0ab",
      "created": 1747776000,
      "metadata": {},
      "common_code": "NGX",
      "trading_hours": {
        "open": "10:00",
        "close": "14:30"
      },
      "extended_hours_supported": true,
      "current_status": {
        "is_open": true,
        "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.

Query Parameters

country
string
status
enum<string>
default:active
Available options:
active,
inactive

Response

List of markets

List envelope. data holds the page of items; each item is itself wrapped in a ResourceEnvelope.

object
enum<string>
required
Available options:
list
url
string
required

The endpoint path that produced this list.

Example:

"/v1/investors/inv_…/deposits"

has_more
boolean
required

Whether more results exist beyond data.

Example:

false

data
object[]
required