AKVON / DOCUMENTATION
Your first connection.
Use AKVON to connect your applications and agents to models and tools through a consistent API.
Development preview: the demo runs use sample responses. Real model requests require an enabled account and available Credits.
01 — Set up your account
Sign in with Privy using your email, Google account or wallet. Your AKVON account holds your Credits and access permissions; your wallet remains a separate source of funds.
02 — Create an API key
Open Console → API keys and create a key. Save it as AKVON_API_KEY in your server environment. Keep it out of browser code and public repositories.
Manage API keys ↗03 — Choose a model and send a request
Choose an available language model from the model catalog and replace the model ID in this example.
curl https://<your-akvon-domain>/v1/chat/completions \
-H "Authorization: Bearer $AKVON_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "<model-id-from-catalog>",
"messages": [{"role": "user", "content": "Hello, AKVON."}]
}'04 — Follow your usage
Your console shows request history and Credits consumption. When a key is no longer needed, revoke it from API keys.