> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# ExplorerTokenData

> Legacy explorer-sourced token data. Superseded by TokenInfo.

### TypeScript shape

```ts theme={null}
interface ExplorerTokenData {
  id: string;
  blueCheckmark: boolean | null;
  description: string | null;
  divisor: string | null;
  tokenPriceUSD: string | null;
  tokenType: string | null;
}
```

<ResponseField name="id" type="String!">Token identifier (`tokenAddress:networkId`).</ResponseField>
<ResponseField name="blueCheckmark" type="Boolean">Whether the explorer flags this token as verified.</ResponseField>
<ResponseField name="description" type="String">Token description text.</ResponseField>
<ResponseField name="divisor" type="String">Decimal divisor for the token's smallest unit.</ResponseField>
<ResponseField name="tokenPriceUSD" type="String">Token price (USD) reported by the explorer.</ResponseField>
<ResponseField name="tokenType" type="String">Token type label (e.g. `ERC-20`, `SPL`).</ResponseField>
