Token Kiosk
Integrations

Anthropic (Claude) models

Call Claude models through the OpenAI-compatible API.

Verified. Claude models via claude-* are exercised end-to-end (streaming + non-streaming) through the full gateway stack.

Claude models are available using the standard OpenAI-compatible request shape — you do not use the Anthropic SDK. Just set the model ID to a claude-* value.

import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://api-token-kiosk.gaib.ai/v1',
  apiKey: 'sk-your-api-key',
})

const res = await client.chat.completions.create({
  model: 'claude-haiku-4-5-20251001',
  messages: [{ role: 'user', content: 'Explain x402 in one sentence.' }],
  max_tokens: 512,
})

Available Claude models

Examples (see the live catalog for the authoritative list and pricing):

Model IDNotes
claude-haiku-4-5-20251001Cheapest, fastest
claude-sonnet-4-6Balanced
claude-opus-4-7Most capable

Because requests use the OpenAI format, streaming and tool calling work exactly as documented in OpenAI SDK. thinking and reasoning_effort are accepted; the model's thinking content is surfaced back as a reasoning field.

On this page