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"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.bluumfinance.com/llms.txt

Use this file to discover all available pages before exploring further.

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