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

# Token Price Quotation (by symbol)

> Get most recent information on the currency corresponding to symbol. Quotations are obtained by filtering trades data with a Moving Average filter and Interquartile Range outlier detection (MAIR).

<Info>
  this endpoint is intended for testing purposes only; if multiple assets with
  the same symbol exists, data for the highest volume generating asset will be
  returned\*
</Info>

<Card title="Example" href="https://api.diadata.org/v1/quotation/BTC" icon="angle-right" horizontal>
  [https://api.diadata.org/v1/quotation/BTC](https://api.diadata.org/v1/quotation/BTC)
</Card>

## Path Parameters

<ParamField path="symbol" type="string" required>
  Which symbol to get a quotation for, e.g., BTC.
</ParamField>

<ResponseExample>
  ```json 200: OK Price information for a given symbol theme={"system"}
  {
      "Symbol": "BTC",
      "Name": "Bitcoin",
      "Address": "0x0000000000000000000000000000000000000000",
      "Blockchain": "Bitcoin",
      "Price": 25692.061459484863,
      "PriceYesterday": 25825.253617593764,
      "VolumeYesterdayUSD": 1323023983.1804218,
      "Time": "2023-09-11T10:15:59.299Z",
      "Source": "diadata.org"
  }
  ```
</ResponseExample>
