Перейти к основному содержанию

Documentation Index

Fetch the complete documentation index at: https://docs.omniakey.com/llms.txt

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

Use this base URL for OpenAI SDKs, Cursor, Codex, Cline, aider, and most custom tools:
https://api.omniakey.com/v1

Chat Completions

POST /v1/chat/completions can call supported Claude, GPT, and Gemini models by id.
curl https://api.omniakey.com/v1/chat/completions \
  -H "Authorization: Bearer your-omniakey-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-opus-4-8",
    "messages": [{"role": "user", "content": "Refactor this function for readability."}]
  }'

Responses

POST /v1/responses serves GPT models with the OpenAI Responses shape. Use it for Codex-style GPT workflows. POST /v1/responses/compact is available for clients that support Responses compaction.

Models

Use GET /v1/models for an OpenAI-compatible model list. For the readable catalog, see Supported Models.