Skip to main content
GET
/
assets
/
batch
Batch lookup assets by symbols
curl --request GET \
  --url https://api.bluumfinance.com/v1/assets/batch \
  --header 'Authorization: Basic <encoded-value>'
{
  "object": "list",
  "url": "/v1/investors/inv_…/deposits",
  "has_more": false,
  "data": [
    {
      "id": "b0b6dd9d-8b9b-48b9-bbb8-bbbb49bb1bbb",
      "object": "investor",
      "livemode": false,
      "class": "equity",
      "country": "us",
      "market": "XNAS",
      "market_name": "NASDAQ",
      "market_country": "US",
      "market_currency": "USD",
      "symbol": "AAPL",
      "name": "Apple Inc.",
      "status": "active",
      "tradable": true,
      "marginable": true,
      "shortable": true,
      "easy_to_borrow": true,
      "fractionable": true,
      "fractional_eh_enabled": true,
      "currency": "USD",
      "created": 1747776000,
      "metadata": {},
      "price": 178.5,
      "change": 1.5,
      "changePercent": 0.85,
      "previousClose": 177,
      "bidPrice": 178.48,
      "askPrice": 178.52,
      "price_timestamp": "2026-05-29T20:00:00.000Z",
      "last_synced_at": "2026-06-01T02:12:31.000Z",
      "bond": {
        "cusip": "00037BAC6",
        "isin": "US00037BAC63",
        "bond_status": "outstanding",
        "bond_type": "corporate",
        "bond_subtype": "bond",
        "maturity_date": "2042-05-08",
        "issue_date": "2012-05-08",
        "dated_date": "2023-12-25",
        "first_coupon_date": "2023-12-25",
        "next_coupon_date": "2023-12-25",
        "last_coupon_date": "2023-12-25",
        "coupon_rate": "4.375",
        "coupon_type": "fixed",
        "coupon_frequency": 2,
        "accrual_basis": "30/360",
        "accrued_interest": 2.795139,
        "face_value": "1000",
        "min_increment": "2000",
        "settlement_period": 2,
        "close_price_date": "2026-05-29",
        "yield_to_maturity": 5.485755,
        "yield_to_worst": 5.485755,
        "callable": false,
        "puttable": false,
        "convertible": false,
        "perpetual": false,
        "next_call_date": "2023-12-25",
        "next_call_price": 123,
        "call_type": "make_whole",
        "issuer": "ABB Finance (USA) Inc.",
        "ticker": "ABBNVX",
        "sector": "Capital Goods",
        "seniority": "Senior",
        "country_domicile": "US",
        "rating": "AAA",
        "sp_rating": "AAA",
        "sp_outlook": "stable"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

symbols
string
required

Comma-separated ticker symbols (max 20).

market
string

Market hint when the symbol trades on multiple exchanges (e.g. XNAS, XNYS, XNSA).

Response

List of assets

List envelope. data holds the page of items; each item is itself wrapped in a ResourceEnvelope.

object
enum<string>
required
Available options:
list
url
string
required

The endpoint path that produced this list.

Example:

"/v1/investors/inv_…/deposits"

has_more
boolean
required

Whether more results exist beyond data.

Example:

false

data
object[]
required