> ## Documentation Index
> Fetch the complete documentation index at: https://docs.infercom.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Infercom API Reference - Overview

> Complete API reference for the Infercom Inference Service. OpenAI-compatible endpoints for chat completions, models, and embeddings.

The Infercom [Developer guide](/en/get-started/overview) and API reference provide the tools you need to build applications using Infercom as an inference service.

## API endpoints

### Text generation

| Endpoint               | Description                                 | Best for                                              |
| ---------------------- | ------------------------------------------- | ----------------------------------------------------- |
| `/v1/chat/completions` | OpenAI-compatible chat API                  | Conversational applications, OpenAI SDK users         |
| `/v1/messages`         | Anthropic-compatible Messages API           | Claude Code, LangChain Anthropic, Anthropic SDK users |
| `/v1/responses`        | Structured output API for agentic workflows | Coding agents, tool calling, multi-step reasoning     |

See [OpenAI compatibility](/en/features/openai-compatibility) for the Chat Completions API, [Anthropic compatibility](/en/features/anthropic-compatibility) for the Messages API, or [Responses API](/en/features/responses-api) for agentic workflows.

### Embeddings

| Endpoint         | Description                | Best for                             |
| ---------------- | -------------------------- | ------------------------------------ |
| `/v1/embeddings` | Generate vector embeddings | RAG, semantic search, classification |

See [Embeddings](/en/features/embeddings) for usage examples.

### Audio

| Endpoint                   | Description                | Best for                              |
| -------------------------- | -------------------------- | ------------------------------------- |
| `/v1/audio/transcriptions` | Transcribe audio to text   | Speech-to-text, meeting transcription |
| `/v1/audio/translations`   | Translate audio to English | Multilingual audio processing         |

See [Audio](/en/features/audio) for usage examples.

## Infercom Inference Service

Code examples in this API reference include the specific URLs for developing on Infercom Inference Service.

## Model sovereignty metadata

The `/v1/models` endpoint supports a `?verbose=true` query parameter that returns detailed metadata for each model, including sovereignty information. Use the `sn_metadata.region` field to determine where a model is hosted:

* **`"EU"`** — the model runs on Infercom's EU infrastructure in Germany with full data sovereignty
* **Empty or absent** — the model is available via SambaNova's global infrastructure

See [Supported models](/en/models/infercomcloud-models#identifying-model-regions) for details and code examples.
