GET
/api/v1/assets
List canonical underlying assets
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| platform | query | string | Return Assets having at least one identifier in this case-insensitive platform namespace, such as hyperliquid or sec. |
| asset_type | query | string | Case-insensitive canonical Asset type filter, such as company, commodity, crypto, index, fund, fx, or other. |
Response fields
| Field | Type | Meaning |
|---|---|---|
| assets | AssetListItem[] | Complete metadata-only Asset catalog under the supplied filters. |
Billing and limits
Calls are billed to prepaid credits, or per call over x402. The price above is the reference price; the 402 challenge returned at request time is what a call actually costs.
One request may be in flight at a time, and request starts must be at least one second apart. A rejected 429 is not billed. See rate limits.
curl
curl -H "x-quotient-api-key: qt_…" \
"https://quotient-api-gateway.onrender.com/api/v1/assets"Run sends this request with preset parameters on Quotient’s demo key. Your credits are not spent.
200 · application/json
{
"assets": [
{
"id": "13fe79af-6d3f-47fd-8e67-f0eb23cab4f9",
"assetKey": "commodity:gold",
"name": "Gold",
"ticker": "GOLD",
"asset_type": "commodity",
"aliases": [
"XAU"
],
"identifiers": [
{
"platform": "hyperliquid",
"kind": "coin",
"value": "xyz:GOLD"
}
],
"linked_market_count": 7
}
]
}