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

# Quick Start

> Quick guide to Token Plan subscription and integration

## Getting Started

<Steps>
  <Step title="Get your Subscription Key">
    Visit [Billing > Token Plan](https://platform.minimax.io/user-center/payment/token-plan) to view your **Subscription Key**.

    <Callout icon="album" color="#A8A8A8" iconType="regular">
      Important Notes:

      * The Subscription Key is used for Token Plan subscriptions and purchased Credits.
      * It is not interchangeable with pay-as-you-go API Keys.
      * The key can exist before you have any paid resources. It becomes usable when you have an assigned Token Plan seat or Credits access.
      * Please protect your API Key. We recommend exporting it as an environment variable or saving it to a config file.
    </Callout>
  </Step>

  <Step title="Get resources">
    Buy an individual Plus, Max, or Ultra Token Plan subscription or a Credits package in your Default Team, or use resources assigned by your Team Owner or Admin.
  </Step>

  <Step title="Test API Call (Optional)">
    Quickly test **MiniMax M3** with the Claude SDK

    **1. Install Claude SDK**

    <CodeGroup>
      ```bash Python theme={null}
      pip install anthropic
      ```

      ```bash Node.js theme={null}
      npm install @anthropic-ai/sdk
      ```
    </CodeGroup>

    **2. Configure Environment Variables**

    ```bash theme={null}
    export ANTHROPIC_BASE_URL=https://api.minimax.io/anthropic
    export ANTHROPIC_API_KEY=${YOUR_API_KEY}
    ```

    **3. Call API**

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

    client = anthropic.Anthropic()

    message = client.messages.create(
        model="MiniMax-M3",
        max_tokens=1000,
        system="You are a helpful assistant.",
        messages=[
            {
                "role": "user",
                "content": [
                    {
                        "type": "text",
                        "text": "Hi, how are you?"
                    }
                ]
            }
        ]
    )

    for block in message.content:
        if block.type == "thinking":
            print(f"Thinking:\n{block.thinking}\n")
        elif block.type == "text":
            print(f"Text:\n{block.text}\n")
    ```
  </Step>

  <Step title="Integrate with AI Coding Tools">
    Choose your preferred AI coding tool from the options below to experience the latest **MiniMax M-series** model capabilities

    <Columns cols={3}>
      <Card title="Claude Code" icon="sparkles" href="/token-plan/claude-code" arrow="true" />

      <Card title="Cursor" icon="mouse-pointer" href="/token-plan/cursor" arrow="true" />

      <Card title="Trae" icon="layers" href="/token-plan/trae" arrow="true" />
    </Columns>

    <Columns cols={3}>
      <Card title="OpenCode" icon="folder-open" href="/token-plan/opencode" arrow="true" />

      <Card title="Kilo Code" icon="zap" href="/token-plan/kilo-code" arrow="true" />
    </Columns>

    <Columns cols={3}>
      <Card title="Grok CLI" icon="terminal" href="/token-plan/grok-cli" arrow="true" />

      <Card title="Codex CLI" icon="file-code" href="/token-plan/codex-cli" arrow="true" />
    </Columns>

    <Columns cols={3}>
      <Card title="Droid" icon="bot" href="/token-plan/droid" arrow="true" />
    </Columns>
  </Step>
</Steps>

## MCP Integration

Quickly integrate **Token Plan MCP** for **Web Search** capability

<Card title="MCP Guide" icon="plug" href="/token-plan/mcp-guide" arrow="true">
  Learn how to configure and use Token Plan MCP
</Card>

## Learn More

<Columns cols={2}>
  <Card title="Token Plan Pricing" icon="coins" href="/guides/pricing-token-plan" arrow="true">
    View subscription and Credits rules.
  </Card>

  <Card title="FAQ" icon="circle-help" href="/token-plan/faq" arrow="true">
    Review common questions on usage, billing, switching, and refunds.
  </Card>
</Columns>

## Best Practices

Quickly view MiniMax Token Plan prompting patterns and practical examples

<Columns cols={2}>
  <Card title="M-series Usage Tips" icon="lightbulb" href="/token-plan/prompting-best-practices" arrow="true">
    Master prompt templates, tool-use patterns, and long-context workflows for Token Plan models
  </Card>

  <Card title="Mini Agent" icon="bot" href="/token-plan/mini-agent" arrow="true">
    Build Agents with M-series Models
  </Card>
</Columns>
