Docs
Getting started
Getting started
Base URLs, the /v1 prefix, and how to think about environments for Vocifer AI inference.
All public routes in this guide sit under the /v1 prefix (for example /v1/models, /v1/chat/completions).
Base URL
| Environment | Example base |
|---|---|
| Production | https://inf.vocifer.com/v1 |
| Staging / preview | Issued per workspace in onboarding |
Replace the host with the one in your dashboard or contract. Every example below uses https://inf.vocifer.com/v1 unless noted otherwise.
TLS and versioning
- Use HTTPS in production.
- Breaking HTTP changes will be versioned (e.g. a future
/v2);/v1stays stable for the life of your integration unless we publish a migration window.
Next: Authentication — send your first authorized request.