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

# Overview

> Track token unlocks, emissions, buybacks, burns, and supply dynamics. Analytics tools and APIs for crypto investors and builders.

<Columns cols={2}>
  <div>
    ## Developer quickstart

    Build and Backtest with the most trusted & comprehensive Tokenomics API.

    <Card title="Get started" icon="arrow-right" href="/api-documents/introduction" horizontal />
  </div>

  <div>
    <CodeGroup>
      ```python Python theme={null}
      import requests

      url = "https://api.tokenomist.ai/v4/token/list"
      headers = {"x-api-key": "YOUR_API_KEY"}

      response = requests.get(url, headers=headers)
      tokens = response.json()["data"]

      for token in tokens[:5]:
          print(token["name"], token["circulatingSupply"])
      ```

      ```typescript TypeScript theme={null}
      const response = await fetch(
        "https://api.tokenomist.ai/v4/token/list",
        { headers: { "x-api-key": "YOUR_API_KEY" } }
      );

      const { data: tokens } = await response.json();

      tokens.slice(0, 5).forEach((token) => {
        console.log(token.name, token.circulatingSupply);
      });
      ```
    </CodeGroup>
  </div>
</Columns>

<Columns cols={4}>
  <Card icon="chart-line" href="/tokenomist" title="Features">
    Explore token unlocks, emissions, buybacks, burns, allocations, and AI insights.
  </Card>

  <Card icon="book" href="/methodology/cliff-and-linear-emission" title="Methodology">
    How we collect, classify, and calculate token supply data.
  </Card>

  <Card icon="code" href="/api-documents/introduction" title="API reference">
    Access token supply data programmatically for research and integration.
  </Card>

  <Card icon="robot" href="/cli/overview" title="AI Integration">
    Query Tokenomics data from your terminal with the CLI or connect AI agents via the MCP server.
  </Card>
</Columns>

## AI Integration

Bring Tokenomics data straight into your terminal and your AI agents — query unlocks, emissions, fundraising, burns, and buybacks without leaving your workflow.

<Columns cols={2}>
  <Card icon="terminal" href="/cli/overview" title="CLI">
    A fast, full-featured terminal interface (`tok`) for token economics data — built for developers, analysts, and AI agents.
  </Card>

  <Card icon="plug" href="/mcp/overview" title="MCP Server">
    Connect AI agents and LLMs to Tokenomist's dataset over the Model Context Protocol — ask real questions about supply, unlocks, and treasury activity.
  </Card>
</Columns>

## Resources

<Columns cols={3}>
  <Card icon="message" href="https://t.me/daosurv" title="Telegram">
    Bug reports, data issues, or listing requests.
  </Card>

  <Card icon="x" iconType="brands" href="https://x.com/tokenomist_ai" title="Follow on X">
    Announcements and insights.
  </Card>

  <Card icon="envelope" href="mailto:support@tokenomist.ai" title="Email">
    Account, billing, and partnerships.
  </Card>
</Columns>
