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

# Poly Exploration API Documentation

> A unified API platform for developers, providing capabilities such as text, image, video, audio, file upload, task processing, and account management, helping developers quickly build AI applications and automated workflows.

<CardGroup cols={2}>
  <Card title="Text Series" icon="text" href="/en/texts/overview">
    Text and multimodal interfaces such as `/v1/chat/completions`, `/v1/responses`, `/v1/messages`, and `/v1beta/models/*`.
  </Card>

  <Card title="Image Series" icon="image" href="/en/images/overview">
    Overview of routes for `/v1/images/*`, `/mj/*`, and Gemini native image capabilities.
  </Card>

  <Card title="Video Series" icon="clapperboard" href="/en/videos/overview">
    Video capabilities organized by model series; currently, documentation is provided first for Grok video generation and querying.
  </Card>

  <Card title="Audio Series" icon="audio-description" href="/en/audio/overview">
    `/v1/audio/transcriptions`, `/v1/audio/translations`, `/v1/audio/speech`, `/suno/*`.
  </Card>

  <Card title="Upload Management" icon="upload" href="/en/uploads/overview">
    Presigned upload capability at `/v1/file/upload`, used for pre-uploading images, videos, and media assets.
  </Card>

  <Card title="Account Management" icon="key-round" href="/en/account/overview">
    Bearer Token, native-compatible authentication headers, OAuth status codes, and balance query interfaces.
  </Card>
</CardGroup>

## Quick Start

```bash theme={null}
curl -X POST https://octopusx.ai/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o",
    "messages": [
      { "role": "user", "content": "Introduce the new-api gateway in three sentences." }
    ]
  }'
```

## Recommended Reading Order

1. [Text Series Overview](/en/texts/overview)
2. [Video Series Overview](/en/videos/overview)
3. [Task Management Overview](/en/tasks/overview)
4. [Account Management Overview](/en/account/overview)
