Skip to main content
Starrise AI provides a unified API for calling AI models from multiple providers, including chat, image generation, and video generation. This guide helps you quickly make your first API call.

Three Steps to Get Started

Step 1: Create an Account

Visit ai.alad.com to register your account.

Step 2: Get Your API Key

Go to the Console to generate your API key. Keep it safe — you’ll need it to authenticate every request.

Step 3: Make Your First API Call

Use your API key to call a chat model. The example below calls Claude 3.5 Sonnet via the OpenAI-compatible interface:
curl https://ai.alad.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-3-5-sonnet",
    "messages": [
      {
        "role": "user",
        "content": "Hello!"
      }
    ]
  }'
Configure your channel first. Different models correspond to different channels. You must enable the corresponding channel in the console before you can successfully call that model. Go to the Console to confirm channels are enabled.

Next Steps

API Reference

Authentication, Base URL, and error codes.

Model API

Browse all available models by provider.