API

API access for Proxify Agent 1.0 and Proxify SuperAgent 1.0

Issue bearer keys in your account, call two native Proxify agent models, and pay from a separate API balance in RUB.

Base URL https://ai.proxify.cloud/api
Proxify Agent 1.0 from 1 token / request
proxify-agent-1.0

Fast everyday agent for chat, code, product tasks, and compact research. It is tuned for quick responses, clean structure, and reliable execution on routine workloads.

Proxify SuperAgent 1.0 from 3 tokens / request
proxify-superagent-1.0

High-performance agent for deeper reasoning, multi-step planning, heavier research, and higher-stakes coding work. It is tuned for stronger analysis, better verification, and more deliberate execution quality.

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.cloud/api/v1/models and https://ai.proxify.cloud/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.

The API exposes the Proxify agent workflow, web research and agent trace, but does not support integrations. It is not compatible with Claude Code, Codex, OpenCode, or other CLI coding agents.

Quick start

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

API access for Proxify Agent 1.0 and Proxify SuperAgent 1.0

Issue bearer keys in your account, call two native Proxify agent models, and pay from a separate API balance in RUB.