Skip to main content
GET
/
assets
/
search
Search for tradable assets
curl --request GET \
  --url https://service.bluumfinance.com/v1/assets/search \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "data": [
    {
      "id": "b06c31e3-2aca-4621-bdf4-a70c3d8e0465",
      "class": "crypto",
      "market": "CRYPTO",
      "symbol": "BCH/USD",
      "name": "Bitcoin Cash / US Dollar",
      "status": "active",
      "tradable": true,
      "marginable": false,
      "shortable": false,
      "easy_to_borrow": false,
      "fractionable": true
    },
    {
      "id": "ec8aadce-033d-4ed9-bb85-93b719de8c9b",
      "class": "crypto",
      "market": "CRYPTO",
      "symbol": "BCH/BTC",
      "name": "Bitcoin Cash / Bitcoin",
      "status": "active",
      "tradable": true,
      "marginable": false,
      "shortable": false,
      "easy_to_borrow": false,
      "fractionable": true
    }
  ],
  "count": 10
}

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 string

Example:

"A"

status
string

Filter by status (e.g., "active")

Example:

"active"

asset_class
enum<string>

Filter by asset class

Available options:
us_equity,
crypto
Example:

"crypto"

market
string

Filter by market (e.g., "CRYPTO", "NASDAQ")

Example:

"CRYPTO"

limit
integer
default:10

Maximum number of results to return

Required range: 1 <= x <= 100
Example:

10

Response

Search results for assets

status
enum<string>
Available options:
success
Example:

"success"

data
object[]
count
integer

Total number of results

Example:

10