# Overview

Welcome to the TokenBot developer documentation. TokenBot provides programmatic access to automated crypto trading, copy trading, and portfolio management.

## APIs

| API                                                   | Description                                                | Base URL                   |
| ----------------------------------------------------- | ---------------------------------------------------------- | -------------------------- |
| [REST API](/home/api-docs/rest-api/overview.md)       | CRUD operations for exchanges, strategies, copiers, trades | `rest-api.tokenbot.com/v1` |
| [GraphQL API](/home/api-docs/graphql-api/overview.md) | Full platform access including auth, admin, onboarding     | `gql-api.tokenbot.com`     |
| [Webhooks](/home/api-docs/webhooks/overview.md)       | Real-time event notifications (27 event types)             | N/A (push-based)           |
| [MCP Server](/home/api-docs/mcp/overview.md)          | AI/LLM tool integration via Model Context Protocol         | Local server               |

## Getting Started

1. [Quickstart Guide](/home/api-docs/quickstart.md) — Make your first API call in minutes
2. [Authentication](/home/api-docs/authentication.md) — API keys, JWT, OAuth, passkeys
3. [Rate Limits](/home/api-docs/rate-limits.md) — Usage limits and best practices
4. [Error Handling](/home/api-docs/errors.md) — Standard error response format

## Key Concepts

* **Exchange Account** — Connected exchange (Binance, Bybit, etc.) with API credentials
* **Strategy** — A trading strategy attached to an exchange account
* **Copier** — Copies trades from a strategy to another exchange account
* **Trade** — An individual order executed on an exchange
* **Trade Pair** — A trading pair (e.g., BTC/USDT) available on an exchange

## Token

The platform token is **TBOT**.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tokenbot.com/home/api-docs/readme.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
