Quick Start

This guide walks you through the essential steps to start making API calls. You can use any programming language you prefer.

Step 1 — Login or Register

First, log in or create an account to get started. Once you’re in, you’ll land on your project dashboard.

Step 2 — Add Your API Keys

To use models from providers like OpenAI, Anthropic, or Gemini, you need to add your own API keys.

  • ➝ Navigate to the Provider Setup page: Dashboard > Setup > Project Setup > Provider Setup.
  • ➝ Enter your API keys for each provider you plan to use. Your keys are stored securely.

Step 3 - Generate platform API Key

Next, you’ll need a platform-specific API key to authenticate your requests with our unified API.

  • ➝ Navigate to the API Keys page: Dashboard > Setup > API Keys.
  • ➝ Click Generate API Key.
  • ➝ Copy this key and keep it safe. You’ll use it in the X-API-Key header for all your requests.

Step 4 - Call the APIs

You can now make requests to our unified endpoints. Remember to replace YOUR_PLATFORM_API_KEY with the key from Step 3 and update the host.

cURL

POST /api/v1/content HTTP/1.1
Host: your-platform-host.com
X-API-Key: YOUR_PLATFORM_API_KEY
Content-Type: application/json

{
    "provider": "gemini",
    "model": "gemini-2.5-flash",
    "prompt": "Your content here."
}

Step 5 - Inspect Your Logs

Navigate to: Dashboard > Monitoring & Logs > API Usage Logs See:

  • ➝ Model/provider used
  • ➝ Token usage
  • ➝ Status Perfect for teams shipping real AI products.