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

# TokenExtrema

> All-time high / all-time low records for a token (price, FDV, circulating market cap).

### TypeScript shape

```ts theme={null}
interface TokenExtrema {
  id: string;
  address: string;
  networkId: number;
  athPrice: string;
  athPriceTimestamp: number;
  atlPrice: string;
  atlPriceTimestamp: number;
  athFdv: string;
  athFdvTimestamp: number;
  atlFdv: string;
  atlFdvTimestamp: number;
  athCircMc: string;
  athCircMcTimestamp: number;
  atlCircMc: string;
  atlCircMcTimestamp: number;
}
```

<ResponseField name="id" type="String!">
  Token ID (address:networkId).
</ResponseField>

<ResponseField name="address" type="String!">
  Token contract address.
</ResponseField>

<ResponseField name="networkId" type="Int!">
  Network ID the token is deployed on.
</ResponseField>

<ResponseField name="athPrice" type="String!">
  All-time high price (USD).
</ResponseField>

<ResponseField name="athPriceTimestamp" type="Int!">
  Unix timestamp of the all-time high price.
</ResponseField>

<ResponseField name="atlPrice" type="String!">
  All-time low price (USD).
</ResponseField>

<ResponseField name="atlPriceTimestamp" type="Int!">
  Unix timestamp of the all-time low price.
</ResponseField>

<ResponseField name="athFdv" type="String!">
  All-time high fully diluted valuation (USD).
</ResponseField>

<ResponseField name="athFdvTimestamp" type="Int!">
  Unix timestamp of the all-time high FDV.
</ResponseField>

<ResponseField name="atlFdv" type="String!">
  All-time low fully diluted valuation (USD).
</ResponseField>

<ResponseField name="atlFdvTimestamp" type="Int!">
  Unix timestamp of the all-time low FDV.
</ResponseField>

<ResponseField name="athCircMc" type="String!">
  All-time high circulating market cap (USD).
</ResponseField>

<ResponseField name="athCircMcTimestamp" type="Int!">
  Unix timestamp of the all-time high circulating market cap.
</ResponseField>

<ResponseField name="atlCircMc" type="String!">
  All-time low circulating market cap (USD).
</ResponseField>

<ResponseField name="atlCircMcTimestamp" type="Int!">
  Unix timestamp of the all-time low circulating market cap.
</ResponseField>
