Skip to main content
GET
/
market-data
/
assets
/
{symbol}
/
bars
Get historical OHLCV bars
curl --request GET \
  --url https://service.bluumfinance.com/v1/market-data/assets/{symbol}/bars \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "data": {
    "symbol": "AAPL",
    "market": "XNAS",
    "currency": "USD",
    "timeframe": "1Day",
    "bars": [
      {
        "timestamp": "2023-11-07T05:31:56Z",
        "open": 123,
        "high": 123,
        "low": 123,
        "close": 123,
        "volume": 123,
        "vwap": 123,
        "tradeCount": 123
      }
    ],
    "dataQuality": {
      "provider": "NAYA",
      "limitations": [
        "Only daily closing prices available; open, high, low values reflect the closing price"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

symbol
string
required

Query Parameters

timeframe
enum<string>
required

Bar timeframe

Available options:
1Min,
5Min,
15Min,
30Min,
1Hour,
1Day,
1Week,
1Month
market
string

Market hint for disambiguation

start
string<date-time>

Start date-time (ISO 8601)

end
string<date-time>

End date-time (ISO 8601)

limit
integer
default:100

Maximum number of bars

Required range: x <= 10000
adjustment
enum<string>
default:raw

Price adjustment type

Available options:
raw,
split,
dividend,
all

Response

Historical bars

status
string
Example:

"success"

data
object