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

# Token Research

> Look up any Solana token's stats, holders, trades, pool events, and market activity in one place with the Solana Tracker Data API.

Use the Data API to research any Solana token. You can pull basic info, live stats, holder breakdowns, recent trades, and on-chain events. These pieces give you what you need for a token dashboard or research tool.

## Get Token Info

The [token information](/data-api/get-token-information) endpoint returns metadata and market data for any token.

<CodeGroup>
  ```bash cURL theme={null}
  curl "https://data.solanatracker.io/tokens/{tokenAddress}" \
    -H "x-api-key: YOUR_API_KEY"
  ```

  ```javascript JavaScript theme={null}
  const token = "38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump";

  const res = await fetch(`https://data.solanatracker.io/tokens/${token}`, {
    headers: { "x-api-key": "YOUR_API_KEY" }
  });
  const data = await res.json();

  console.log(`${data.token.name} (${data.token.symbol})`);
  console.log(`Price: $${data.pools[0]?.price?.usd}`);
  console.log(`Market Cap: $${data.pools[0]?.marketCap?.usd}`);
  ```

  ```python Python theme={null}
  import requests

  token = "38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump"
  res = requests.get(
      f"https://data.solanatracker.io/tokens/{token}",
      headers={"x-api-key": "YOUR_API_KEY"}
  )
  data = res.json()
  print(f"{data['token']['name']} ({data['token']['symbol']})")
  ```
</CodeGroup>

***

## Token Stats

The [token stats](/data-api/get-token-stats) endpoint gives you trading volume, buy/sell counts, and unique trader counts across time windows.

```bash theme={null}
curl "https://data.solanatracker.io/stats/{token}" \
  -H "x-api-key: YOUR_API_KEY"
```

Returns stats broken down by `5m`, `1h`, `6h`, and `24h` windows including:

* Buy and sell volume (USD)
* Number of buys and sells
* Unique buyers and sellers
* Price change percentage

***

## Token Holders

### Top 100

The [top 100 holders](/data-api/get-token-holders-top-100) endpoint returns the largest token holders.

```bash theme={null}
curl "https://data.solanatracker.io/tokens/{token}/holders" \
  -H "x-api-key: YOUR_API_KEY"
```

### All Holders (Paginated)

For the full holder list, use the [paginated holders](/data-api/get-all-token-holders-paginated) endpoint:

```bash theme={null}
# Page 1
curl "https://data.solanatracker.io/tokens/{token}/holders/paginated?page=1&limit=100" \
  -H "x-api-key: YOUR_API_KEY"
```

***

## Recent Trades

The [token trades](/data-api/get-token-trades) endpoint returns the most recent buys and sells.

<CodeGroup>
  ```bash cURL theme={null}
  curl "https://data.solanatracker.io/trades/{token}" \
    -H "x-api-key: YOUR_API_KEY"
  ```

  ```javascript JavaScript theme={null}
  const token = "38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump";

  const res = await fetch(`https://data.solanatracker.io/trades/${token}`, {
    headers: { "x-api-key": "YOUR_API_KEY" }
  });
  const trades = await res.json();

  trades.forEach(t => {
    const side = t.type === "buy" ? "BUY" : "SELL";
    console.log(`${side} $${t.volume.toFixed(2)} by ${t.wallet}`);
  });
  ```
</CodeGroup>

You can also filter trades by pool or by a specific wallet:

```bash theme={null}
# Trades on a specific pool
curl "https://data.solanatracker.io/trades/{token}/{pool}" \
  -H "x-api-key: YOUR_API_KEY"

# Trades by a specific wallet
curl "https://data.solanatracker.io/trades/{token}/by-wallet/{wallet}" \
  -H "x-api-key: YOUR_API_KEY"
```

***

## Token Events

The [token events](/data-api/get-token-events) endpoint returns on-chain events like liquidity adds/removes, pool creation, and burns. Liquidity means the funds in a pool that let people trade.

```bash theme={null}
curl "https://data.solanatracker.io/events/{token}" \
  -H "x-api-key: YOUR_API_KEY"
```

***

## Search for Tokens

The [search endpoint](/data-api/token-search) finds tokens by name, symbol, or address.

```bash theme={null}
# Search by name
curl "https://data.solanatracker.io/search?query=bonk" \
  -H "x-api-key: YOUR_API_KEY"

# Search by exact symbol
curl "https://data.solanatracker.io/search?symbol=BONK" \
  -H "x-api-key: YOUR_API_KEY"
```

Filter by [Coin Communities](/guides/search-coin-communities) activity — live message counts, range filters, and sorting by `communityMessages`.

***

## Discover New Tokens

<CardGroup cols={2}>
  <Card title="Latest Tokens" href="/data-api/get-latest-tokens">
    Most recently created tokens on Solana.
  </Card>

  <Card title="Trending Tokens" href="/data-api/get-trending-tokens">
    Tokens with the most activity right now.
  </Card>

  <Card title="Graduating Tokens" href="/data-api/get-graduating-tokens">
    Tokens about to graduate from pump.fun.
  </Card>

  <Card title="Top Performers" href="/data-api/get-top-performing-tokens">
    Biggest gainers across different timeframes.
  </Card>
</CardGroup>

***

## All-Time High

Check if a token is near or far from its ATH:

```bash theme={null}
curl "https://data.solanatracker.io/tokens/{token}/ath" \
  -H "x-api-key: YOUR_API_KEY"
```

<CardGroup cols={2}>
  <Card title="Price & Charts" href="/guides/price-and-charts">
    Fetch chart candles, historical prices, and multi-token price snapshots.
  </Card>

  <Card title="Sniper Detection" href="/guides/sniper-detection">
    Find early buyers, bundled launches, and suspicious wallet activity on a token.
  </Card>
</CardGroup>
