Getting Started with Axione AI

Welcome to Axione AI! This guide will help you get up and running with our AI model gateway.

Quick Start

Get started with Axione AI in just a few simple steps:

  1. Create an Account - Sign up for free
  2. Get API Keys - Generate your authentication tokens
  3. Make Your First Request - Start using AI models

1. Authentication

All API requests require authentication using your API key:

curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://axione.vercel.app/api/v1/models

2. Making Requests

Example chat completion request:

curl -X POST https://axione.vercel.app/api/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-3.5-turbo",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

3. Available Models

We support multiple AI providers and models:

  • OpenAI (GPT-3.5, GPT-4)
  • Anthropic (Claude)
  • Google (Gemini)
  • And more...
Ready to get started? Create your account now!