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

# Quick Start

> Get started with PipeLLM in 3 steps

## 1. Get Your API Key

1. Sign up at [console.pipellm.ai](https://console.pipellm.ai)
2. Top up your balance
3. Create an API key

## 2. Make Your First Request

<Tabs>
  <Tab title="OpenAI">
    ```bash theme={null}
    curl https://api.pipellm.ai/v1/chat/completions \
      -H "Content-Type: application/json" \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -d '{
        "model": "gpt-4o",
        "messages": [{"role": "user", "content": "Hello!"}]
      }'
    ```
  </Tab>

  <Tab title="Anthropic">
    ```bash theme={null}
    curl https://api.pipellm.ai/v1/messages \
      -H "Content-Type: application/json" \
      -H "x-api-key: YOUR_API_KEY" \
      -H "anthropic-version: 2023-06-01" \
      -d '{
        "model": "claude-sonnet-4-5-latest",
        "max_tokens": 1024,
        "messages": [{"role": "user", "content": "Hello!"}]
      }'
    ```
  </Tab>

  <Tab title="Gemini">
    ```bash theme={null}
    curl "https://api.pipellm.ai/v1beta/models/gemini-3-flash-preview:generateContent" \
      -H "Content-Type: application/json" \
      -H "x-goog-api-key: $PIPELLM_API_KEY" \
      -d '{
        "contents": [
          {
            "role": "user",
            "parts": [{"text": "Hello!"}]
          }
        ]
      }'
    ```
  </Tab>
</Tabs>

## 3. Explore More

<Columns cols={3}>
  <Card title="OpenAI Compatible" href="/api-reference/openai/overview">
    GPT, Grok, GLM, DeepSeek
  </Card>

  <Card title="Anthropic" href="/api-reference/anthropic/overview">
    Opus, Sonnet, Haiku
  </Card>

  <Card title="Gemini" href="/api-reference/gemini/overview">
    Gemini 3, 2.5, 2.0
  </Card>
</Columns>
