Endpoints

CamelStep exposes unified endpoints for OpenAI compatibility as well as provider-specific endpoints for native protocol access.

OpenAI Compatible (Standard)

Recommended

The primary endpoint for most interactions. It accepts the standard OpenAI Chat Completion format and supports automatic routing to Google, Anthropic, and OpenAI models via Model ID prefixes.

POSThttps://api.camelstep.ai/v1/chat/completions

Google Vertex AI (Native)

A dedicated pass-through endpoint for Google Gemini models on Vertex AI. Use this if you have existing code built for the Google Vertex AI SDK or need specific Google-only parameters.

POSThttps://api.camelstep.ai/v1/google/chat/completions

Supported Features

  • Native contents and parts structure
  • Vertex AI generationConfig and safetySettings
  • Stream support via /stream suffix (e.g., .../google/chat/completions/stream)

Anthropic (Native via Standard)

Currently, Anthropic models are accessed via the Standard Endpoint using the anthropic/ model prefix. We automatically convert the request format to Anthropic's native structure internally.

POSThttps://api.camelstep.ai/v1/chat/completions

* Direct native Anthropic endpoint access is coming soon.