# Current USD Prices for Specific Tokens

**Use case:** 

Get real-time USD prices for Ethereum tokens by contract address. Includes 24h change, liquidity, and volume data from the best trading pair.

## Input

```json
{
  "tokens": [
    "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
    "0x6B175474E89094C44Da98b954EedeAC495271d0F",
    "0x514910771AF9Ca656af840dff83E8264EcF986CA"
  ],
  "chainId": 1,
  "maxConcurrency": 1
}
```

## Output

```json
{
  "input": {
    "label": "Input",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "tokenAddress": {
    "label": "Selected contract",
    "format": "text"
  },
  "matchBasis": {
    "label": "Matched by",
    "format": "text"
  },
  "priceUsd": {
    "label": "Price (USD)",
    "format": "number"
  },
  "priceChangeH24": {
    "label": "24h change (%)",
    "format": "number"
  },
  "liquidityUsd": {
    "label": "Liquidity (USD)",
    "format": "number"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Live Price Oracle](https://apify.com/zinin/live-price-oracle) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zinin/live-price-oracle) to learn more, explore other use cases, and run it yourself.