Skip to content
provod.ai
RU

Access without a VPN

One platform for AI models

Transparent pricing in rubles, one balance, and documents for companies.

POST /v1/chat/completionsopenai/gpt-5.4
POST /v1/chat/completions
Authorization: Bearer $PROVOD_API_KEY
Content-Type: application/json

{
  "model": "openai/gpt-5.4",
  "messages": [{ "role": "user", "content": "Hello" }]
}
Set the key, base URL, and model explicitly in your application.

Popular models

The public catalog shows routeable model families, identifiers, capabilities, and ruble prices. Availability follows the current catalog.

Connect with a familiar SDK

Use the OpenAI SDK with the provod.ai base URL and an explicit public model identifier.

  • Streaming responses
  • API-key spend limits
  • Request-level usage
Open documentation
import OpenAI from "openai";

const client = new OpenAI({
  apiKey: process.env.PROVOD_API_KEY,
  baseURL: "https://api.provod.ai/v1"
});

await client.chat.completions.create({
  model: "openai/gpt-5.4",
  messages: [{ role: "user", content: "Hello" }]
});

Chat for working with models

Discuss tasks, attach documents, and switch models in one workspace.

Try chat
A layered graphite chat workspace with conversation, source, and model tool panels
Abstract overlapping panels represent a conversation, attached sources, and model tools in one workspace.

Billing and control

Top up your ruble balance and see spending in one place.

  • API key limits
  • Request and charge history
  • Invoices and closing documents for your company
Tactile balance and document objects arranged on a work surface
An abstract balance vessel and blank document objects represent payment and company paperwork.

Start in four actual steps

  1. An account tile entering a modular workspace
    01

    Create an account

    One account for API, chat, and team workflows.

  2. A stack of abstract coins funding a balance module
    02

    Add funds

    Fund the balance in rubles before starting work.

  3. A digital key connecting to a protected API endpoint
    03

    Create an API key

    A dedicated key connects the application to the API.

  4. A request packet passing through a gateway to a model and returning with a response
    04

    Send a request

    The first request verifies the key, endpoint, and model.

Helpful answers before you start

Short guidance for common account, billing, and model questions.

Create an account, add funds, create an API key, then send a first request with a model from the catalog.

No. Add funds to the balance and pay for confirmed usage at the current published rate.

Some models in a personal workspace can require a first real top-up. Check the current catalog for the unavailable reason.

Sign in using the method linked to your account, then check your workspace, balance, and keys.

Read the full FAQ

Recent guides

Explore API setup, models, usage controls, and team workflows in the blog.

Open blog