Overview
Seltz exposes an OpenAI-compatiblePOST /v1/chat/completions endpoint. It’s a drop-in replacement providing single-shot, web-grounded retrieval-augmented generation (RAG).
Preview. This endpoint is currently grounded in news search, so it’s best for current-events and recent-news questions — for example, “Who is going to be Apple’s next CEO?”. Broader web coverage is on the way.
base_url and API key.
- Base URL:
https://api.seltz.ai/v1
POST request to /v1/chat/completions with the same request body as OpenAI’s Chat Completions API.
- Endpoint:
POST https://api.seltz.ai/v1/chat/completions
This endpoint performs single-shot RAG. When
messages contains a multi-turn history, retrieval is driven by the last user message only: earlier turns do not influence what is retrieved. There is no conversational memory across calls.Pricing
Each call bills as one request at the standard flat rate, the same as/search and /answer. See Pricing for details.
Next steps
To learn more about Seltz chat completions, check out the following topics:- Quickstart — Making your first request
- Authentication — How to authenticate to the chat completions endpoint
- Structured outputs — Requesting structured outputs
- Streaming — Requesting streaming responses
- Citations — Requesting citations in responses
- Steer tone and format — How to steer style and behavior of chat completions responses
- Reference — Reference information for chat completions