Get asset details
Market & Token Data
Get Asset Details
Retrieve comprehensive asset information including metadata, market data, supply statistics, and detailed token information across all chains.
GET
Get asset details
Overview
The Asset Details endpoint provides comprehensive asset-level data including metadata, market statistics, price changes, and detailed token information for each contract across all supported blockchains. Unlike the Token Details endpoint which focuses on a single token contract, this endpoint aggregates data at the asset level and returns detailed information for all associated tokens.GET Method - Single Asset Query
Retrieve detailed asset information for a single asset, identified either by asset ID or by a token address and blockchain.Query Parameters
id(optional) — The asset ID (integer). Use this to query by asset ID directly.address(required if noid) — Token contract address. Must be used together withblockchain.blockchain(required if usingaddress) — The blockchain identifier (e.g.,evm:1,solana,ethereum)tokensLimit(optional) — Maximum number of tokens to return detailed data for. Default: 10, Max: 50.
Step-by-Step Tutorial and Video Walkthrough
- Check out the guide: Here
Usage Examples
Query by Asset ID:Response Format
Response Fields
Asset Object
| Field | Type | Description |
|---|---|---|
id | number | Unique asset identifier |
name | string | Asset name |
symbol | string | Asset symbol/ticker |
logo | string | null | URL to the asset logo |
description | string | null | Asset description |
rank | number | null | Market cap rank (1 = highest) |
nativeChainId | string | null | Native chain ID if this is a native coin |
priceUSD | number | null | Current price in USD |
totalSupply | number | Total supply |
circulatingSupply | number | Circulating supply |
marketCapUSD | number | Market capitalization in USD |
marketCapDilutedUSD | number | Fully diluted market cap in USD |
athPriceDate | date | null | All-time high price date (fallback from tokens if null) |
athPriceUSD | number | null | All-time high price in USD (fallback from tokens if null) |
atlPriceDate | date | null | All-time low price date (fallback from tokens if null) |
atlPriceUSD | number | null | All-time low price in USD (fallback from tokens if null) |
isStablecoin | boolean | Whether the asset is a stablecoin |
createdAt | date | Asset creation date |
listedAt | date | null | Listing date (fallback from oldest token if null) |
socials | object | null | Social media links (twitter, website, github, etc.) |
Tokens Array
Each token object in thetokens array contains the same fields as the Token Details endpoint, providing comprehensive on-chain data for each token contract associated with the asset.
| Field | Description |
|---|---|
tokensCount | Total number of tokens associated with this asset (may be more than returned based on tokensLimit) |
Error Responses
| Status Code | Description |
|---|---|
| 400 | Invalid parameters or missing required fields |
| 404 | Asset not found |
| 500 | Internal server error |
Notes
- When querying by
addressandblockchain, the endpoint finds the asset associated with that token and returns data for the entire asset including all its tokens. - The
tokensLimitparameter controls how many tokens get enriched with detailed trading data. Set a lower limit for faster responses. - Token details include real-time trading statistics, holder information, and security flags across all supported DEXes.
POST Method - Batch Query
Retrieve asset details for multiple assets in a single request for improved efficiency.Request Body
Body Parameters
The request body is an array of objects, where each object contains:id(optional) — The asset ID. EitheridORaddress+blockchainmust be provided.address(optional) — Token contract address. Must be used withblockchain.blockchain(optional) — The blockchain identifier. Required when usingaddress.tokensLimit(optional) — Maximum number of tokens per asset. Default: 10, Max: 50.
Usage Examples
Response Format
Use Cases
- GET: Single asset monitoring, real-time price checks, detailed asset analysis
- POST: Portfolio analysis, bulk asset research, multi-asset dashboard data
Query Parameters
Asset ID
Token contract address
Blockchain chain ID (e.g., "evm:56", "solana:solana")
Maximum number of tokens to return (1-50, default: 10)
Required range:
1 <= x <= 50