Skip to main content
GET
Get list of fungible assets

Authorizations

Authorization
string
header
required

To test endpoints here, paste your API key from the dashboard into the username field and leave the password empty.

Query Parameters

currency
enum<string>
default:usd

Denominated currency value of returned prices

Available options:
eth,
btc,
usd,
eur,
krw,
rub,
gbp,
aud,
cad,
inr,
jpy,
nzd,
try,
zar,
cny,
chf
page
object

Pagination parameters

filter[search_query]
string

Query for a full-text search.

Required string length: 1 - 66
Example:

"Index"

filter[implementation_chain_id]
string

Keep only fungibles from this chain. Available chain ids can be found in chains endpoints.

Example:

"polygon"

filter[implementation_address]
string

Keep only fungibles deployed at given address. Is it possible that different fungibles are deployed at the same address on different chains.

Required string length: 32 - 44
Example:

"0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6"

filter[fungible_implementations]
string[]

Keep only fungibles with given implementations (comma-separated list of chain:address pairs). Maximum of 25 implementations allowed. example: "base,ethereum:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"

This filter is mutually exclusive with filter[implementation_chain_id] and filter[implementation_address].

Maximum array length: 25
filter[fungible_ids]
string[]

Keep only fungibles with the given ids (comma-separated list)

Maximum array length: 25
Maximum string length: 44
filter[asset_class]
enum<string>[]

Keep only fungibles whose asset_class is one of the given values (comma-separated). Values are the public asset_class vocabulary; tokenized_treasury, other_financial and other_non_financial each cover every underlying class they group, and unknown selects fungibles identified as a likely RWA with the specific class still pending.

Part of the RWA classification add-on, enabled per organization: organizations without it get 403.

Mutually exclusive with filter[has_asset_class]. Cannot be combined with filter[fungible_ids], filter[fungible_implementations], filter[implementation_address], or an address given as filter[search_query] — those look fungibles up directly and would not apply the filter, so the request is refused with 400 instead. Combines with filter[implementation_chain_id], a text filter[search_query], sort, and pagination.

Required array length: 1 - 7 elements

Asset classification for the fungible — tokenized real-world assets and stablecoins. A paid add-on, enabled per organization — returned on GET /v1/fungibles/, GET /v1/fungibles/{fungible_id}, GET /v1/fungibles/by-implementation, and on the fungible_info of GET /v1/wallets/{address}/positions/ and GET /v1/wallet-sets/{wallet_set_id}/positions/, only for organizations that have it. The fungible_info of a transaction — transfers, fees, approvals, refunds — never carries it. Omitted when the fungible is unclassified or its classification has been cleared. Absence does not mean the fungible is not an RWA. The value unknown is different from absence: it is a positive classification — the fungible is a likely RWA, with the specific class still pending.

Available options:
commodity,
tokenized_stock,
tokenized_treasury,
stablecoin,
other_financial,
other_non_financial,
unknown
filter[has_asset_class]
enum<boolean>

Keep only fungibles that carry an asset_class — any class, including unknown. The only accepted value is true: this filter has one meaning, and false is refused with 400 rather than read as "not an RWA" (absence of asset_class is not a negative signal, see the attribute's description).

Part of the RWA classification add-on, enabled per organization: organizations without it get 403.

Mutually exclusive with filter[asset_class], and subject to the same combination rules: refused with 400 alongside filter[fungible_ids], filter[fungible_implementations], filter[implementation_address], or an address given as filter[search_query]; combines with filter[implementation_chain_id], a text filter[search_query], sort, and pagination.

Available options:
true
sort
enum<string>

Choose how the result should be ordered

Available options:
-market_data.market_cap,
market_data.market_cap,
-market_data.price.last,
market_data.price.last,
-market_data.price.percent_change_1d,
market_data.price.percent_change_1d,
-market_data.price.percent_change_30d,
market_data.price.percent_change_30d,
-market_data.price.percent_change_90d,
market_data.price.percent_change_90d,
-market_data.price.percent_change_365d,
market_data.price.percent_change_365d,
-market_data.trading_volumes.volume_1d,
market_data.trading_volumes.volume_1d

Response

Response for requested list of fungibles

data
object[]
required