Skip to main content
GET
/
assets
/
{symbol}
/
quotes
/
history
Get historical quotes
curl --request GET \
  --url https://api.bluumfinance.com/v1/assets/{symbol}/quotes/history \
  --header 'Authorization: Basic <encoded-value>'
{
  "object": "investor",
  "livemode": false,
  "symbol": "AAPL",
  "market": "XNAS",
  "currency": "USD",
  "quotes": [
    {
      "timestamp": "2023-11-07T05:31:56Z",
      "bid_price": 123,
      "bid_size": 123,
      "ask_price": 123,
      "ask_size": 123,
      "bid_exchange": "<string>",
      "ask_exchange": "<string>",
      "conditions": [
        "<string>"
      ],
      "tape": "<string>"
    }
  ],
  "next_page_token": "<string>",
  "has_more": true,
  "id": "inv_01j9x8m2k7qpzwv3t5r6y8n0ab",
  "created": 1747776000,
  "metadata": {}
}

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

market
string

Market hint for disambiguation

start
string<date-time>
required
end
string<date-time>
limit
integer
Required range: 1 <= x <= 10000
page_token
string

Cursor from a previous response's next_page_token.

feed
enum<string>
default:iex

Data feed (Alpaca). SIP requires a paid Alpaca subscription.

Available options:
iex,
sip,
otc

Response

Historical quotes

Envelope-wrapped historical quotes (object: quotes_history).

object
string
required

The resource type discriminator.

Example:

"investor"

livemode
boolean
required

Whether this resource was created against a live API key. Test-mode keys always return false.

Example:

false

symbol
string
required
Example:

"AAPL"

market
string
required
Example:

"XNAS"

currency
string
required

Price currency (ISO 4217)

Example:

"USD"

quotes
object[]
required
next_page_token
string | null
required

Cursor for the next page. Pass back as page_token. Null when no more data.

has_more
boolean
required

True when more ticks are available beyond this page.

id
string

Prefixed public id (e.g. inv_…, ord_…, dep_…).

Example:

"inv_01j9x8m2k7qpzwv3t5r6y8n0ab"

created
integer | null

Unix-seconds timestamp of resource creation.

Example:

1747776000

metadata
object

Partner-set key/value map for cross-referencing.