Skip to main content

Documentation Index

Fetch the complete documentation index at: https://apidoc.deerapi.com/llms.txt

Use this file to discover all available pages before exploring further.

Access AI models through one API

DeerAPI provides OpenAI-compatible access to text, image, video, audio, and music models through a unified API account. Start with a DeerAPI API Key, choose a current model ID, and call the endpoint that matches your workflow.

Quick Start

Configure the base URL, add your API Key, and make a first request.

Live Model List

Browse available models and pricing from the DeerAPI dashboard.

API Dashboard

Manage API Keys, review logs, and monitor usage.

Explore by workflow

Text and reasoning

Call GPT, Claude, Gemini, and other chat models through OpenAI-compatible endpoints.

Image generation

Generate, edit, and manage images with OpenAI-compatible and provider-specific APIs.

Video generation

Create and query video tasks for Sora, Veo, Kling, Runway, and related workflows.

Audio and music

Build transcription, translation, speech, sound effect, and music workflows.

Start in minutes

The following example uses the OpenAI SDK format with DeerAPI settings:
from openai import OpenAI

client = OpenAI(
    api_key="<DEERAPI_KEY>",
    base_url="https://api.deerapi.com/v1",
)

response = client.chat.completions.create(
    model="your-model-id",
    messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)

More resources

Integration Guides

Connect DeerAPI to popular AI tools and OpenAI-compatible clients.

Error Reference

Diagnose API Key, base URL, model ID, rate limit, and service errors.