> ## 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.

# PairMetadataToken

> Token summary within pair metadata (address, symbol, pooled amount, price, labels).

### TypeScript shape

```ts theme={null}
interface PairMetadataToken {
  address: string;
  decimals: number | null;
  name: string;
  networkId: number;
  pooled: string;
  price: string;
  symbol: string;
  labels: ContractLabel[] | null;
}
```

<ResponseField name="address" type="String!">Token contract address.</ResponseField>
<ResponseField name="decimals" type="Int">Token decimals.</ResponseField>
<ResponseField name="name" type="String!">Token name.</ResponseField>
<ResponseField name="networkId" type="Int!">Network ID.</ResponseField>
<ResponseField name="pooled" type="String!">Pooled amount.</ResponseField>
<ResponseField name="price" type="String!">Price.</ResponseField>
<ResponseField name="symbol" type="String!">Token symbol.</ResponseField>
<ResponseField name="labels" type="[ContractLabel]">Contract labels (Scam / HoneyPot / Imitator / HighTax). Currently always an empty list — not yet populated. See [ContractLabel](/api-reference/graphql/types/ContractLabel).</ResponseField>
