LLM Proxy

Chat Completions

OpenAI-compatible chat completions endpoint.

Proxies requests to OpenRouter, handling authentication and usage tracking.

Usage with OpenAI SDK:

import OpenAI from "openai";

const client = new OpenAI({
  apiKey: process.env.REBOLT_API_KEY,
  baseURL: "https://sdk.rebolt.ai/sdk/v1.0",
});

const response = await client.chat.completions.create({
  model: "anthropic/claude-sonnet-4",
  messages: [{ role: "user", content: "Hello!" }],
});
post/sdk/v1.0/chat/completions

Response

Successful Response

{"stackTrail":"paths:/sdk/v1.0/chat/completions:post:responses:200:content:application/json:schema","oasType":"schema","type":"unknown"}

Changes

No recorded changes to this endpoint across all 1 revision of this API.