Welcome to Arei.

Your subscription is active. Here's what to do next.

🚀

Start using Arei right now

The web interface works immediately — no key needed. Ask your first question while your API key is on its way.

Step 1 — Your API key

Watch for an email from us

We'll send your Arei API key to the address you used at checkout — usually within a few minutes. No email after 30 minutes? Email nonpareil.arei@gmail.com with your Stripe receipt and we'll send it immediately.

Step 2 — API access (optional)

Want to build with Arei?

The API lets you send questions from your own apps, scripts, or workflows and get verified, multi-model answers back automatically. This is a bonus for developers — the web interface at askarei.com works without any of this.

Show me the code →

Paste this in your terminal. It sends a question to five AI providers at once and returns a synthesized answer with per-sentence corroboration scores.

# Replace YOUR_API_KEY with the key we emailed you
curl -X POST https://askarei.com/api/ask \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "question": "What are the key risks of deploying LLMs in production?",
    "providers": ["gemini", "groq", "openrouter", "cohere", "cerebras"]
  }'
📖
Full API reference All endpoints, request format, providers, and response schema