Quick Start Guide
Get started with ZetaIQ's AI-powered advertising platform in minutes. Follow these steps to create your first campaign.
Installation
npm install zetaiq-sdk
# or
yarn add zetaiq-sdk
Basic Usage
const ZetaIQ = require('zetaiq-sdk');
const client = new ZetaIQ({
apiKey: 'your-api-key',
environment: 'production'
});
// Create a campaign
const campaign = await client.campaigns.create({
name: 'My First Campaign',
budget: 1000,
startDate: '2025-04-01',
endDate: '2025-04-30'
});
Authentication
Learn how to authenticate your requests to the ZetaIQ API using API keys and OAuth 2.0.
API Keys
Parameter | Type | Description |
---|---|---|
apiKey | string | Your API key from the ZetaIQ dashboard |
environment | string | Either 'production' or 'sandbox' |
Integration Guide
Follow our comprehensive integration guide to implement ZetaIQ in your application.
Prerequisites
- ZetaIQ account with API access
- Node.js 14.x or higher
- Basic understanding of REST APIs