Infer

Skip to Content
Quickstart

Quickstart

Infer is a unified OpenAI-compatible endpoint for top AI models. This page walks you through the four things you need to start using it: an API key, the base URL, a connection test, and the model IDs you can call.

Get an API key

  1. Open the API Keys dashboard.
  2. Sign in or create a Infer account.
  3. Click Create API key, name it, and copy the generated key (format: sk-...).
  4. Add credits on the Credits page so the key can make paid calls.
Warning:

Keys are shown only once. Store them in a password manager or server-side secret store. Never commit them to source control or paste them into client-side code.

Base URL

Every Infer request goes to the same OpenAI-compatible endpoint. Use this value for the base_url / baseURL field in any SDK or the target URL for direct HTTP calls:

Base URL
https://api-infer-test.agentsey.ai/v1

The URL above is resolved for the environment you are signed in to, so copy-paste works without further editing.

Verify the connection

Run one of the snippets below with your key in place of your_api_key. A successful call returns a chat completion JSON payload, which confirms the key, the base URL, and your network are all working:

curl https://api-infer-test.agentsey.ai/v1/chat/completions \
  -H "Authorization: Bearer your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.4",
    "messages": [{ "role": "user", "content": "Hello" }]
  }'

A successful response looks like this — the choices[0].message.content is the model’s reply, and the usage block shows the tokens billed against your credits:

200 OK
{
  "id": "chatcmpl-...",
  "object": "chat.completion",
  "created": 1738960610,
  "model": "gpt-5.4",
  "choices": [
    {
      "index": 0,
      "message": { "role": "assistant", "content": "Hello! How can I help you today?" },
      "finish_reason": "stop"
    }
  ],
  "usage": {
    "prompt_tokens": 13,
    "completion_tokens": 9,
    "total_tokens": 22
  }
}
Tip:

A 401 means the key is wrong or missing. A 404 on /chat/completions almost always means the base URL is missing the /v1 suffix; copy it from the block above.

Supported models

These are the model IDs you can use to test the connection — drop any one of them into the model field of the verification request above to check whether that specific model is currently callable on your account. The full catalog with live pricing lives on the Models page.

VendorModel IDInput (Credits / 1M)Output (Credits / 1M)Cache read (Credits / 1M)Cache write (Credits / 1M)
OpenAI
gpt-5.4
50300562.6
gpt-5.3-codex
352803.5N/A
Anthropic
claude-haiku-4-5
30150337.5
claude-opus-4-6
15075015187.5
claude-sonnet-4-6
904509112.5
Google
gemini-2.5-flash
7.562.551.875N/A
gemini-2.5-flash-image
7.5750N/AN/A
xAI
grok-4-1-fast
1332.53.25N/A
DeepSeek
deepseek-v4-pro
174348N/AN/A

Supported tools

Infer works with any client that accepts a custom OpenAI-compatible base URL. Pick the integration path that matches how you use AI, and follow its setup guide:

  • CLI agents: terminal agents including Codex, Claude Code, and OpenCode.
  • VS Code extensions: the first-party Codex plugin and other extensions that read a custom OpenAI endpoint.
  • Direct API: any application, SDK, or script that speaks the OpenAI /chat/completions protocol. See the API reference for full details.

What’s next

  • Base URL for this environment: https://api-infer-test.agentsey.ai/v1.
  • Manage keys and view usage on the API Keys dashboard.
  • Browse the full Models catalog with live pricing.
  • Read the API reference for authentication, error codes, and privacy.
Last updated on