# DOGE Ticker Lookup - Crypto Symbol Search CoinGecko

**Use case:** 

Which coin is "doge"? Resolve a crypto ticker to its CoinGecko id and confirm the real Dogecoin, filtering out scam tokens and copycat symbols.

## Input

```json
{
  "mode": "search",
  "vsCurrency": "usd",
  "query": "doge",
  "coinIds": [
    "bitcoin",
    "ethereum"
  ],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "marketCapRank": {
    "label": "Rank",
    "format": "number"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "change24hPct": {
    "label": "24h %",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [CoinGecko Crypto Market Scraper](https://apify.com/dami_studio/coingecko-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dami_studio/coingecko-scraper) to learn more, explore other use cases, and run it yourself.