HTTP Header
Example: Authenticated request
Best practices
- Rotate keys periodically and keep separate keys for dev/staging/prod.
- Set rate limits appropriately for each environment.
- Monitor usage and last_used to detect stale keys.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use Bearer tokens in the Authorization header on every request.
Authorization: Bearer sk-your-api-key-here
curl -X GET "https://tryvinci.com/api/v1/billing/balance" \
-H "Authorization: Bearer sk-your-api-key-here"
import requests
headers = {
"Authorization": "Bearer sk-your-api-key-here",
"Content-Type": "application/json",
}
r = requests.get("https://tryvinci.com/api/v1/billing/balance", headers=headers)
r.raise_for_status()
print(r.json())
const r = await fetch("https://tryvinci.com/api/v1/billing/balance", {
headers: { "Authorization": "Bearer sk-your-api-key-here" },
});
if (!r.ok) throw new Error(`HTTP ${r.status}`);
console.log(await r.json());
Was this page helpful?