Get started
Experiential Labs is an OpenAI-compatible model gateway: one base URL in front of every model: hosted providers, your own provider keys, our platform-funded credits, and self-hosted or custom models. Point an OpenAI client at it and change nothing else.
Everything starts here. Keep your existing OpenAI integration and point it at https://api-pr-884.preview.experientiallabs.ai/v1 with an Experiential Labs key. The gateway speaks the OpenAI wire protocol for both Chat Completions and the Responses API, streaming included, so the only lines that change are the base URL and the key.
curl "https://api-pr-884.preview.experientiallabs.ai/v1/chat/completions" \-H "Authorization: Bearer $EXPLABS_API_KEY" \-H "Content-Type: application/json" \-d '{"model": "qwen3.8-27b", "messages": [{"role": "user", "content": "Hello"}]}'
Ready to run it end to end? The Quickstart takes you from signing in to a streamed response in under a minute.
A request names a model by its slug (for example claude-opus-5). The gateway resolves that slug through a per-model provider waterfall, an ordered list of ways to reach the model, trying each rung and failing over on capacity or transport errors until one succeeds. You get the first good response; the routing is invisible.
Experiential Cloud is a curated collection of models, hosted and optimized by Experiential Labs. Call those slugs with your Experiential Labs key.
Every model is paid for through one of two lanes, with no markup either way:
Agents and tools should read /llms.txt, the complete machine-readable reference.