Skip to content

Quick Start

  1. Create an account at console.aiand.com and sign in with Google, GitHub, or a magic link.

  2. Create an API key from the dashboard. Your key starts with sk- and is shown once — save it somewhere safe.

  3. Add credits to your account via the billing page. You can purchase credits starting from $1.

  4. Make your first request:

    Terminal window
    curl https://api.aiand.com/v1/chat/completions \
    -H "Authorization: Bearer sk-your-api-key" \
    -H "Content-Type: application/json" \
    -d '{
    "model": "gpt-4o-mini",
    "messages": [
    {"role": "user", "content": "Hello!"}
    ]
    }'

ai& is fully compatible with the OpenAI SDK. Just change the base_url / baseURL to https://api.aiand.com/v1 and use your ai& API key.

This works with any library or tool that supports the OpenAI API format, including LangChain, LlamaIndex, and others.