Quickstart

Get started with The Intelligence Gateway in 5 minutes. Create an account, generate an API key, and make your first request.

1

Step 1: Create Account

Sign up for an account to get started. You can use email or Google to create your account.

Create account
2

Step 2: Generate API Key

Navigate to your dashboard and create an API key. Save it securely - it's only shown once.

Go to API dashboard
3

Step 3: Make Your First Request

Use the universal Router format generation endpoint. Compatible with standard SDKs for easy integration!

curl https://api.arcada.dev/api/v1/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "input_format": "text",
    "output_format": "website",
    "messages": [
      {
        "role": "user",
        "content": "Create a landing page for a coffee shop"
      }
    ]
  }'
Copy