Quick Start

Get running in three steps.

1

Create an account

Sign up at /login with your email and password.

2

Generate an API key

Go to API Keys, click Create Key, and copy the ax_live_... key. It's shown once.

3

Send a request

Pass the key in the Authorization header.

curl -X POST https://api.aivorylabs.in/v1/chat \
  -H "Authorization: Bearer ax_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "groq/llama-3.3-70b-versatile",
    "messages": [
      {"role": "user", "content": "What is the meaning of life?"}
    ],
    "stream": false
  }'