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

# Overview

# Build intelligent applications with the world’s most advanced AI capabilities.

Access over 400 AI models through a single, unified API.

AnyAPI simplifies AI integration by providing a single, unified interface to access hundreds of leading AI models from providers like OpenAI, Anthropic, Google, Cohere, and more.
Our intelligent routing system automatically handles model fallbacks, optimizes for cost-effectiveness, and ensures high availability—all through one consistent API endpoint.

## AI Model Categories

<CardGroup cols={3}>
  <Card title="Text Generation & Completion" icon="pen-to-square" href="/api-reference/models/text-models/overview" color="#6366f1">
    Unlock human-level language understanding and generation for any task, from writing to reasoning.
  </Card>

  <Card title="Image & Visual AI" icon="eye" href="/api-reference/models/image-models/overview" color="#10b981">
    Transform your visual workflows with cutting-edge image generation and analysis capabilities.
  </Card>

  <Card title="Audio & Speech" icon="headphones" href="/api-reference/models/audio-models/overview" color="#8b5cf6">
    Enable voice-powered experiences with advanced audio processing capabilities.
  </Card>
</CardGroup>

<CardGroup cols={3}>
  <Card title="Embedding" icon="code" href="/api-reference/models/embedding-models/overview" color="#0ea5e9">
    Power semantic search, recommendations, and clustering with high-quality text embeddings.
  </Card>

  <Card title="Moderation" icon="shield" href="/api-reference/models/moderation-models/overview" color="#ef4444">
    Ensure safety and trust at scale with AI models tuned for content moderation and policy enforcement.
  </Card>

  <Card title="Other AI models" icon="layer-group" href="/api-reference/models/other-models/overview" color="#a855f7">
    Explore specialized models for code, math, tools, agents, and emerging AI capabilities.
  </Card>
</CardGroup>

## Popular Use Cases

Discover how developers are using AnyAPI to build intelligent applications.

<CardGroup cols={3}>
  <Card title="Content Creation & Marketing" icon="pen" href="/api-reference/models/moderation-models/overview" color="#ef4444">
    Generate blog posts, social media content, product descriptions, and marketing copy at scale.
  </Card>

  <Card title="Code Generation & Review" icon="code" href="/api-reference/models/other-models/overview" color="#a855f7">
    Accelerate development with AI-powered code generation, review, and documentation.
  </Card>

  <Card title="Data Analysis & Insights" icon="chart" href="/api-reference/models/other-models/overview" color="#a855f7">
    Extract insights from unstructured data, generate reports, and automate analysis workflows.
  </Card>
</CardGroup>

## Integration Options

<Tabs>
  <Tab title="REST API">
    Standard HTTP requests with JSON responses. Perfect for any programming language.

    ```bash theme={"system"}
    curl -X POST "https://api.anyapi.ai/v1/chat/completions" \
    -H "Authorization: Bearer $ANYAPI_KEY" \
    -H "Content-Type: application/json" \
    -d '{
    "model": "openai/gpt-4-turbo",
    "messages": [{"role": "user", "content": "Hello!"}]
    }'
    ```
  </Tab>

  <Tab title="SDKs">
    Official SDKs available for popular programming languages with built-in error handling and retries.

    ```python theme={"system"}
    from anyapi import AnyAPI

    client = AnyAPI(api_key="your-api-key")

    response = client.chat.completions.create(
    model="openai/gpt-4-turbo",
    messages=[{"role": "user", "content": "Hello!"}]
    )
    ```
  </Tab>

  <Tab title="WebSocket">
    Real-time streaming for chat applications and live data processing.

    ```javascript theme={"system"}
    const ws = new WebSocket('wss://api.anyapi.ai/v1/stream');

    ws.onmessage = (event) => {
    const data = JSON.parse(event.data);
    console.log(data.choices[0].delta.content);
    };
    ```
  </Tab>
</Tabs>

## Pricing & Plans

<CardGroup cols={2}>
  <Card icon="circle-dollar" href="https://anyapi.ai/pricing">
    **\$0/month**

    * 100 000 ₳nyTokens per day for free
    * Basic and free models access
    * Community support
    * Free features
    * No SLA
  </Card>

  <Card icon="circle-dollar" href="https://anyapi.ai/pricing">
    **\$19.90/month**

    * 100m ₳nyTokens
    * All models access
    * Priority support
    * All Features
    * 99,9+ Service Availability
  </Card>

  <Card icon="circle-dollar" href="https://anyapi.ai/pricing">
    **\$95.90/month**

    * 500m ₳nyTokens
    * All models access
    * Priority support
    * All Features
    * 99,9+ Service Availability
  </Card>

  <Card icon="circle-dollar" href="https://anyapi.ai/pricing">
    **\$279.90/month**

    * 1.5b ₳nyTokens
    * All models access
    * Dedicated support
    * All Features
    * 99,9+ Service Availability
  </Card>

  <Card icon="circle-dollar" href="https://anyapi.ai/pricing">
    **Custom**
    **Custom ₳nyTokens**

    * Unlimited API calls
    * All models access
    * Dedicated support
    * All Features
    * Custom SLA
  </Card>

  <Card icon="circle-dollar" href="https://anyapi.ai/contact">
    **Ask for more information**

    * Write to our support team and ask for more information
  </Card>
</CardGroup>

## Need Help?

<CardGroup cols={2}>
  <Card title="FAQ" icon="circle-question" href="/get-started/faq">
    Comprehensive guides and tutorials
  </Card>

  <Card title="API Reference" icon="terminal" href="/api-reference/models/text-models/overview">
    Complete API documentation
  </Card>

  <Card title="Community" icon="users" href="https://discord.gg/rJgyzGynHw">
    Join our Discord community
  </Card>

  <Card title="Support" icon="gear" href="mailto:support@anyapi.ai">
    Contact our support team
  </Card>
</CardGroup>
