TypeScript shape
interface EnhancedToken {
id : string ;
address : string ;
cmcId : number | null ;
decimals : number ;
isScam : boolean | null ;
name : string | null ;
networkId : number ;
symbol : string | null ;
totalSupply : string | null ;
socialLinks : SocialLinks | null ;
info : TokenInfo | null ;
mobula : MobulaTokenData | null ;
gridAssetId : string | null ;
bluechipRating : string | null ;
organization : Organization | null ;
asset : Asset | null ;
explorerData : ExplorerTokenData | null ;
exchanges : Exchange [] | null ;
imageThumbUrl : string | null ;
imageSmallUrl : string | null ;
imageLargeUrl : string | null ;
circulatingSupply : string | null ;
pooled : string | null ;
creatorAddress : string | null ;
createBlockNumber : number | null ;
createTransactionHash : string | null ;
createdAt : number | null ;
mintable : string | null ;
freezable : string | null ;
isFreezableValid : boolean | null ;
isMintableValid : boolean | null ;
launchpad : LaunchpadData | null ;
top10HoldersPercent : number | null ;
profanity : boolean | null ;
extrema : TokenExtrema | null ;
coinCommunity : CoinCommunity | null ;
}
The ID of the token (address:networkId).
The contract address of the token.
The token ID on CoinMarketCap.
The precision to which the token can be divided. For example, the smallest unit for USDC is 0.000001 (6 decimals).
Whether the token has been flagged as a scam.
The token name. For example, ApeCoin.
The network ID the token is deployed on.
The token symbol. For example, APE.
Community gathered links for the socials of this token. See SocialLinks .
More metadata about the token. See TokenInfo .
Mobula-native enrichment for this token: pricing engine data, real-time stats, holder concentration, security flags, launchpad/liquidity fields, live/trending signals and source metadata. See MobulaTokenData .
A list of exchanges where the token has been traded. See Exchange .
The token creator’s wallet address.
The block height the token was created at.
The transaction hash of the token’s creation.
The unix timestamp for the creation of the token.
Returns mint authority address if token is mintable. If null, verify against isMintableValid.
Returns freeze authority address if token is freezable. If null, verify against isFreezableValid.
Determines if freezable is a valid address or null value for the authority, or if the freezable state has not yet been determined.
Determines if mintable is a valid address or null value for the authority, or if the mintable state has not yet been determined.
The launchpad data for the token, if applicable. See LaunchpadData .
The percentage of total supply held by the top 10 holders (excluding exchanges/pairs).
Whether the token is mintable.
Whether the token is freezable.
Whether the token’s name or symbol contains profanity.
The Grid asset ID linking this token to its logical Asset .
Bluechip rating for the token, when available.
All-time high / all-time low records (price, FDV, circulating market cap) for the token. See TokenExtrema . Token ID (address:networkId).
All-time high price (USD).
Unix timestamp of the all-time high price.
All-time low price (USD).
Unix timestamp of the all-time low price.
All-time high fully diluted valuation (USD).
Unix timestamp of the all-time high FDV.
All-time low fully diluted valuation (USD).
Unix timestamp of the all-time low FDV.
All-time high circulating market cap (USD).
Unix timestamp of the all-time high circulating market cap.
All-time low circulating market cap (USD).
Unix timestamp of the all-time low circulating market cap.
The logical Grid asset this token belongs to, which may span multiple deployments. See Asset . Asset type classification.
Root identifier shared across deployments.
On-chain deployments of this token’s asset across networks. See AssetDeployment . Network ID this deployment lives on.
Contract address of the deployment.
Token standard (e.g. ERC20, SPL).
Root identifier shared across deployments.
Metadata about the issuer of the token’s asset, for established/verified projects. See Organization . Date the organization was founded.
Short organization description.
Long organization description.
Organization type classification.
Sector the organization operates in.
Organization-related URLs. See OrganizationUrl . URL type (e.g. website, docs, blog).
Organization social profiles. See OrganizationSocial . Social type (e.g. twitter, telegram, discord).
Root identifier shared across the organization’s assets.
Assets issued by this organization. See
Asset .
Community coin metadata associated with the token. See CoinCommunity . The community identifier.
Unix timestamp for when the community coin was created.
The following fields are deprecated — supply and image fields have moved to TokenInfo ; pooled lives on the pair instead. They remain in the schema for backwards compatibility and may be removed in a future version.
explorerData
ExplorerTokenData
deprecated
Deprecated — pooled values can be found on the
Pair type instead.