Skip to main content

Getting Started with Cue

Welcome to Cue, the first AI-native ad network built specifically for conversational applications. Get contextual ads integrated into your chatbot or AI assistant in less than 15 minutes.

What is Cue?

Cue is a context-aware monetization layer that combines semantic intelligence, dynamic creative generation, and intelligent targeting to serve highly relevant ads within AI-driven conversations.

Key Features

  • 🎯 Contextual Targeting: Semantic matching ensures ads align with conversation context
  • ⚡ Easy Integration: Simple REST API and SDKs for quick implementation
  • 🤖 AI-Powered: Dynamic creative generation and intelligent optimization
  • 📊 Real-time Analytics: Track performance and optimize campaigns in real-time
  • 💰 Revenue Optimization: Maximize earnings with smart bidding and targeting

Quick Start

1. Create an Account

Sign up for a Cue account and get your API credentials:

  1. Visit the Cue Dashboard
  2. Create your account
  3. Navigate to API Keys and create a new key

2. Make Your First Ad Request

curl -X POST https://api.oncue.ad/api/v1/ad-serving/request \
-H "Content-Type: application/json" \
-H "Authorization: Bearer your-api-key" \
-d '{
"context": {
"conversation": "I need help choosing a project management tool for my team",
"userQuery": "What are some good options for small teams?"
},
"placement": {
"type": "inline",
"position": "after_response"
}
}'

3. Handle the Response

{
"ads": [
{
"id": "ad-123",
"content": {
"headline": "Perfect for Small Teams",
"description": "Streamline your workflow with our intuitive project management platform",
"callToAction": "Start Free Trial"
},
"tracking": {
"clickUrl": "https://api.oncue.ad/api/v1/ad-serving/click/ad-123"
}
}
]
}

Integration Options

REST API

Use our REST API directly for maximum flexibility and control.

👉 API Reference

JavaScript SDK

Quick integration for web applications and Node.js.

npm install @cue/sdk
import { CueAds } from '@cue/sdk';

const cue = new CueAds({ apiKey: 'your-api-key' });
const ad = await cue.requestAd({ context, placement });

Python SDK

Perfect for AI/ML applications and chatbots.

pip install cue-ads
from cue_ads import CueAds

cue = CueAds(api_key='your-api-key')
ad = cue.request_ad(context=context, placement=placement)

What's Next?

For Developers

For Advertisers

Need Help?

Ready to monetize your AI application? Let's get started! 🚀