Skip to main content
GET
/
assets
/
{asset_id}
/
quotes
/
latest
Get the latest quote (NBBO) for an asset
curl --request GET \
  --url https://api.bluum.finance/v1/assets/{asset_id}/quotes/latest \
  --header 'Authorization: Basic <encoded-value>'
{
  "t": "2024-01-15T09:30:15.123Z",
  "ax": "IEXG",
  "ap": "175.80",
  "as": "500",
  "bx": "IEXG",
  "bp": "175.70",
  "bs": "300",
  "c": [
    "R"
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

asset_id
string<uuid>
required
Example:

"6c5b2403-24a9-4b55-a3dd-5cb1e4b50da6"

Response

Latest quote data

t
string<date-time>

Timestamp of the quote

Example:

"2024-01-15T09:30:15.123Z"

ax
string

Ask exchange

Example:

"IEXG"

ap
string

Ask price

Example:

"175.80"

as
string

Ask size

Example:

"500"

bx
string

Bid exchange

Example:

"IEXG"

bp
string

Bid price

Example:

"175.70"

bs
string

Bid size

Example:

"300"

c
string[]

Quote conditions

Example:
["R"]