> ## 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.

# AI Integration

> Use Solana Tracker documentation with AI assistants like Cursor, ChatGPT, and Claude — copy markdown, paste prompts, and connect via MCP and llms.txt.

Solana Tracker documentation is fully available for AI consumption. Whether you're building AI agents, using LLM-powered coding assistants, or just want quick answers — we've got you covered.

***

## LLM-Ready Documentation

We provide machine-readable versions of our entire documentation for use with AI models, agents, and tools like Cursor, Claude Code, Claude, ChatGPT, and more.

<CardGroup cols={2}>
  <Card title="llms.txt" icon="file-lines" href="https://docs.solanatracker.io/llms.txt">
    Lightweight summary of all endpoints, parameters, and resources. Ideal for context-limited models.
  </Card>

  <Card title="llms-full.txt" icon="file" href="https://docs.solanatracker.io/llms-full.txt">
    Complete documentation in plain text. Best when you need full detail and have a large context window.
  </Card>
</CardGroup>

### When to use which

| File            | Size    | Best for                                                        |
| --------------- | ------- | --------------------------------------------------------------- |
| `llms.txt`      | Compact | Quick lookups, smaller context windows, coding assistants       |
| `llms-full.txt` | Full    | Deep integration work, building agents, comprehensive reference |

***

## AI Chatbot

Every page on this documentation site includes an **AI-powered search and chat** built right in. Click the search bar or press `⌘K` to ask questions like:

* *"How do I get the price of a token?"*
* *"What parameters does the swap endpoint accept?"*
* *"Show me how to stream new tokens via WebSocket"*

The chatbot has full context of all Solana Tracker APIs — Data API, Swap API, Datastream, Solana RPC, and Yellowstone gRPC.

***

## Use with AI Coding Assistants

### Cursor / Claude Code

Add the documentation as context by referencing the URL directly:

```
https://docs.solanatracker.io/llms-full.txt
```

Or add it to your project's AI instructions or system prompt:

```
Use https://docs.solanatracker.io/llms.txt as reference for all Solana Tracker API calls.
```

### ChatGPT / Claude

Paste the contents of `llms.txt` or `llms-full.txt` into your conversation, or provide the URL when using web-enabled models.

### Custom AI Agents

Fetch the documentation programmatically for your agent's knowledge base:

```bash theme={null}
curl -s https://docs.solanatracker.io/llms.txt
```

```bash theme={null}
curl -s https://docs.solanatracker.io/llms-full.txt
```

Cache these files locally when possible. Do not fetch them on every prompt or every tool call.

***

## What's Included

Both files cover the full Solana Tracker API surface:

* **Data API** — Token prices, holders, trades, chart data, stats, and more
* **Swap API** — Quote and execute swaps across Solana DEXs
* **Raptor DEX Aggregator** — Next-gen swap routing
* **Datastream** — Real-time WebSocket streams for tokens, wallets, and events
* **Solana RPC** — Standard and custom RPC methods
* **Yellowstone gRPC** — High-performance Geyser streaming
