Create an API key
Create a scoped token in the Hubrium console. Treat it like a password and keep it server-side.
Get API keyDeveloper quickstart
Keep your existing OpenAI or Anthropic SDK and change only the endpoint and API key.
Pick the client you already use. Every tab uses the same Hubrium key, base URL and model IDs.
Create a scoped token in the Hubrium console. Treat it like a password and keep it server-side.
Get API keyPass the Hubrium endpoint as base_url to your OpenAI or Anthropic client.
Choose any enabled model ID from the models page or models endpoint.
curl https://api.hubrium.com/v1/chat/completions \
-H "Authorization: Bearer $HUBRIUM_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v3.1",
"messages": [
{"role": "user", "content": "Explain this code."}
],
"stream": true
}'OpenAI-compatible Chat Completions and Responses alongside Anthropic-compatible Messages. Model capabilities depend on the current gateway configuration.
/v1/modelsList models available to your API key/v1/chat/completionsOpenAI chat, tools and streaming/v1/responsesOpenAI Responses-compatible agent requests/v1/messagesAnthropic Messages, tools and streamingHubrium publishes stable, machine-readable discovery files so coding agents can understand models, prices and the API without scraping the interface.
Send us your SDK, expected volume and target models. We will help map the cleanest migration.
[email protected]