Skip to main content
GET
/
market-data
/
markets
List available markets
curl --request GET \
  --url https://service.bluumfinance.com/v1/market-data/markets \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "data": [
    {
      "code": "XNSA",
      "name": "Nigerian Stock Exchange",
      "country": "NG",
      "currency": "NGN",
      "timezone": "Africa/Lagos",
      "status": "active",
      "commonCode": "NGX",
      "tradingHours": {
        "open": "10:00",
        "close": "14:30"
      }
    }
  ],
  "count": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

country
string

Filter by ISO 2-letter country code (e.g., US, NG)

status
enum<string>
default:active

Filter by market status

Available options:
active,
inactive

Response

List of markets

status
string
Example:

"success"

data
object[]
count
integer