5 Minute Guide

Quick Start

Make your first API call to AI AdPilot. You'll be up and running before you finish your coffee.

1

Create an Account

Sign up for free — you'll receive $5 in free credits to get started. No credit card required.

2

Get Your API Key

After signing in, go to your API Keys page and create a new key. Copy it — you'll use it in the next step.

⚠️

Store it safely

Your API key is shown only once. Copy it and store it securely.

3

Make Your First Request

AI AdPilot is fully OpenAI-compatible. If you already use the OpenAI SDK, just change the base URL:

curl https://api.aipilotads.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "gpt-5.5",
    "messages": [
      {"role": "user", "content": "Hello! What can you do?"}
    ]
  }'
4

Explore Models

You now have access to 50+ AI models across multiple providers through a single API. Browse all models & pricing →