Skip to main content
GET
/
market-data
/
assets
/
search
Search assets across markets
curl --request GET \
  --url https://service.bluumfinance.com/v1/market-data/assets/search \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "data": [
    {
      "id": "b0b6dd9d-8b9b-48b9-bbb8-bbbb49bb1bbb",
      "class": "us_equity",
      "market": "XNAS",
      "symbol": "AAPL",
      "name": "Apple Inc.",
      "status": "active",
      "tradable": true,
      "marginable": true,
      "shortable": true,
      "easy_to_borrow": true,
      "fractionable": true,
      "currency": "USD",
      "price": 178.5,
      "change": 1.5,
      "changePercent": 0.85,
      "previousClose": 177,
      "bidPrice": 178.48,
      "askPrice": 178.52
    }
  ],
  "count": 123
}

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.

Query Parameters

q
string
required

Search query (ticker symbol, company name, or partial match)

market
string

Filter by market (MIC code or common code)

asset_class
enum<string>

Filter by asset class

Available options:
us_equity,
crypto,
us_option,
ng_equity,
ng_bond,
ng_etf
limit
integer
default:50

Maximum number of results

Required range: x <= 100

Response

Search results

status
string
Example:

"success"

data
object[]
count
integer