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

# Introduction

> Welcome to Unifically - Your unified API for AI Models

<img className="block dark:hidden" src="https://mintcdn.com/unifically-106e2767/lnJK2O3wR49a_KV_/logo/logo.png?fit=max&auto=format&n=lnJK2O3wR49a_KV_&q=85&s=e41a5dbe3c8ae6fa8777be10e9c58be7" alt="Unifically Logo" width="320" height="350" data-path="logo/logo.png" />

<img className="hidden dark:block" src="https://mintcdn.com/unifically-106e2767/lnJK2O3wR49a_KV_/logo/logo.png?fit=max&auto=format&n=lnJK2O3wR49a_KV_&q=85&s=e41a5dbe3c8ae6fa8777be10e9c58be7" alt="Unifically Logo" width="320" height="350" data-path="logo/logo.png" />

## Welcome to Unifically

Unifically provides a **unified API** for accessing multiple AI models including:

* **Language Models** - GPT 5.4/5.5, Claude Sonnet/Opus 4.6–4.8, Composer 2.5
* **Image Generation** - GPT Image, Nano Banana (Gemini 2.5 Flash), Flux.2
* **Video Generation** - Veo 3.1, Kling 3.0/2.6/2.1, Minimax Hailuo 2.0
* **Audio Generation** - Suno API for music and voice, ElevenLabs TTS

## For LLMs & AI Agents

Unifically publishes machine-readable docs that any LLM or coding agent can ingest directly:

* **`llms.txt`** — concise index of every page, ideal for in-context routing
* **`llms-full.txt`** — the entire documentation site as a single plain-text file

<CardGroup cols={2}>
  <Card title="llms.txt" icon="file-lines" href="/llms.txt">
    Compact link index of the docs for LLM context
  </Card>

  <Card title="llms-full.txt" icon="file-lines" href="/llms-full.txt">
    Full documentation as a single plain-text file
  </Card>
</CardGroup>

## Getting Started

<CardGroup cols={2}>
  <Card title="Get Your API Key" icon="key" href="https://unifically.com">
    Sign up and get your API key to start using Unifically
  </Card>

  <Card title="LLM API" icon="message" href="/models/llm/overview">
    GPT, Claude, and Composer models via Chat Completions, Responses, and Messages
  </Card>

  <Card title="Unified Tasks API" icon="code" href="/api-reference/v1-tasks">
    Create and manage AI generation tasks with a unified interface
  </Card>

  <Card title="Image Models" icon="image" href="/models/image/openai/gpt-image-2">
    GPT Image, Nano Banana, Flux.2, and more
  </Card>

  <Card title="Video Models" icon="video" href="/models/video/google/veo-3.1">
    Veo 3.1, Kling, Hailuo, and more
  </Card>
</CardGroup>

## Features

<AccordionGroup>
  <Accordion icon="layer-group" title="Unified Interface">
    One API for all models — LLMs via `/v1/chat/completions`, `/v1/responses`, and `/v1/messages`; media generation via `/v1/tasks`
  </Accordion>

  <Accordion icon="key" title="Unified Authentication">
    One API key for all models - no need to manage multiple accounts
  </Accordion>

  <Accordion icon="bolt" title="Fast & Reliable">
    High-performance infrastructure with 99.9% uptime
  </Accordion>

  <Accordion icon="dollar-sign" title="Pay As You Go">
    No subscriptions - only pay for what you use
  </Accordion>

  <Accordion icon="code" title="Developer Friendly">
    Clean REST API with comprehensive documentation and examples
  </Accordion>
</AccordionGroup>

## Quick Start

```bash theme={null}
# Create a task
curl -X POST https://api.unifically.com/v1/tasks \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "google/veo-3.1-fast",
    "input": {
      "prompt": "A cat walking on the beach at sunset"
    }
  }'

# Check status
curl https://api.unifically.com/v1/tasks/{task_id} \
  -H "Authorization: Bearer YOUR_API_KEY"
```

<Note>
  Replace `YOUR_API_KEY` with your actual API key from [unifically.com](https://unifically.com)
</Note>

## Support

Need help? Check out the documentation sections or contact our support team at [contact@unifically.com](mailto:contact@unifically.com)
