Skip to main content
GET
/
market-data
/
markets
/
{code}
Get market details
curl --request GET \
  --url https://service.bluumfinance.com/v1/market-data/markets/{code} \
  --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"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

code
string
required

Market identifier (MIC code like XNSA, or common code like NGX)

Response

Market details

status
string
Example:

"success"

data
object