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

# Price

> Token price in USD, optionally at a timestamp or block.

### TypeScript shape

```ts theme={null}
interface Price {
  address: string;
  timestamp: number | null;
  networkId: number;
  priceUsd: number;
  blockNumber: number | null;
  poolAddress: string | null;
  confidence: number | null;
}
```

<ResponseField name="address" type="String!">Token contract address.</ResponseField>
<ResponseField name="networkId" type="Int!">Network ID.</ResponseField>
<ResponseField name="priceUsd" type="Float!">Token price in USD.</ResponseField>
<ResponseField name="timestamp" type="Int">Timestamp of the price (if historical).</ResponseField>
<ResponseField name="blockNumber" type="Int">Block number used for pricing (if applicable).</ResponseField>

<Warning>
  The following fields are deprecated — pricing is no longer based on specific pools. They remain in the schema for backwards compatibility and may be removed in a future version.
</Warning>

<ResponseField name="poolAddress" type="String" deprecated>Deprecated — pricing is no longer based on specific pools.</ResponseField>
<ResponseField name="confidence" type="Float" deprecated>Deprecated — pricing is no longer based on specific pools.</ResponseField>
