Documentation
Browse guides, references and quickstarts. Pick a topic from the menu on the left.
getting-started
account
Other
Template variables
Use these placeholders in any page's title, meta description, or body. They're replaced on every request so the docs stay in sync when the site is rebranded or moved.
Site name
Brand / site name configured in Admin → Site & SEO.
Resolves to Nova AI Relay
Site URL
Public origin the docs are being served from (https://your-domain).
Resolves to https://novarelay.io
API base URL
OpenAI-compatible endpoint used in code samples and curl commands.
Resolves to https://api.novagate.ai/v1
Copy-paste examples
Page title
You write
Getting started — {{site_name}}Readers see
Getting started — Nova AI Relay
Meta description
You write
Use {{api_base_url}} as a drop-in OpenAI replacement on {{site_name}}.Readers see
Use https://api.novagate.ai/v1 as a drop-in OpenAI replacement on Nova AI Relay.
Body — link
You write
Visit [{{site_name}}]({{site_url}}) for the latest docs.Readers see
Visit [Nova AI Relay](https://novarelay.io) for the latest docs.
Body — curl snippet
You write
curl {{api_base_url}}/chat/completions \
-H "Authorization: Bearer $YOUR_KEY"Readers see
curl https://api.novagate.ai/v1/chat/completions \ -H "Authorization: Bearer $YOUR_KEY"