API

Proxify API for hosted agents and OpenCode

Call four concrete models through Chat Completions. Every model supports native client tool calls for OpenCode and other compatible clients.

Base URL https://ai.proxify.host/api
Claude Opus 4.8 from 1 token / request
anthropic/claude-opus-4.8

High-capability Claude model for complex reasoning, code and agent runs.

Claude Opus 5 from 1 token / request
anthropic/claude-opus-5

Latest Claude Opus model for demanding reasoning and long-running agent work.

GPT-5.5 from 1 token / request
openai/gpt-5.5

High-capability GPT model for chat, code and tool-enabled workflows.

GPT-5.6 from 1 token / request
openai/gpt-5.6-sol

Latest GPT reasoning model for complex coding and autonomous agent runs.

How it works

  • Create an account and open the API section in settings.
  • Generate a bearer key once and save it securely.
  • Call https://ai.proxify.host/api/v1/models and https://ai.proxify.host/api/v1/chat/completions.
  • Requests are billed from a separate API balance in RUB inside your account.

API balance top-ups, support and custom volume are handled via @proxifyaihelp.

Choose any model returned by GET /v1/models for OpenCode and other OpenAI-compatible coding clients with native tool calls. Hosted integrations and connectors remain unavailable through the API.

Quick start

curl https://ai.proxify.host/api/v1/chat/completions \
  -H "Authorization: Bearer pxy_live_xxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-5.6-sol",
    "messages": [
      {"role": "user", "content": "Собери короткий план запуска AI-продукта."}
    ],
    "web_search": false
  }'

Proxify API for hosted agents and OpenCode

Call four concrete models through Chat Completions. Every model supports native client tool calls for OpenCode and other compatible clients.