Anthovara API
OpenAI-compatible inference
Use Anthovara through the standard chat completions interface. Models and health are public; inference requires an API key.
Endpoints
Authentication
Send your API key with inference requests:
Authorization: Bearer <API_KEY>Data policy
Anthovara does not use prompts, completions, files, images, or API inputs/outputs to train models.
Examples
curl https://api.anthovara.com/v1/modelscurl https://api.anthovara.com/v1/healthcurl https://api.anthovara.com/v1/chat/completions \
-H "Authorization: Bearer $ANTHOVARA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "MODEL_ID",
"messages": [{"role":"user","content":"Hello"}],
"max_tokens": 32
}'