> ## 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 address)

> Returns the quotation for a fully qualified asset (i.e. distinguished by blockchain and address). Quotations are obtained by filtering trades data with a Moving Average filter and Interquartile Range outlier detection (MAIR).

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

## Path Parameters

<ParamField path="blockchain" type="string" required>
  Name of the blockchain for requested asset
</ParamField>

<ParamField path="asset" type="string" required>
  Address of the requested asset for this data
</ParamField>

<ResponseExample>
  ```json 200: OK Price information for a given asset theme={"system"}
  {
      "Symbol": "BTC",
      "Name": "Bitcoin",
      "Address": "0x0000000000000000000000000000000000000000",
      "Blockchain": "Bitcoin",
      "Price": 25703.376586196053,
      "PriceYesterday": 25815.29054321003,
      "VolumeYesterdayUSD": 1317774231.5192668,
      "Time": "2023-09-11T10:07:59.944Z",
      "Source": "diadata.org",
      "Signature": "0x8e0ffd0f2aac9306a6605e82f87856859b0666f1e600c9247b2935bfe52ded71061aa0c04e83dde4b6272a3057b5b93d9395ed5d8e1f033d1b25b04e73e1680101"
  }
  ```
</ResponseExample>
