AdSync Documentation

Complete guides, API reference, and tutorials for the AdSync platform

Platform Overview

AdSync is a comprehensive marketing automation platform that enables businesses to manage campaigns across Google Ads, Meta Ads, and Microsoft Ads from a single interface.

Key Features

  • Multi-Platform Management: Manage campaigns across all major advertising platforms
  • AI-Powered Optimization: Automated bid management and budget optimization
  • Advanced Analytics: Cross-platform reporting and attribution
  • Team Collaboration: Role-based access controls and team management
  • Enterprise Security: SOC2 compliance and advanced security features

Architecture

AdSync is built on a modern, scalable architecture with the following components:

  • Plugin System: Modular architecture for platform integrations
  • API Gateway: RESTful API for all platform operations
  • Real-time Processing: Event-driven architecture for real-time updates
  • Data Pipeline: Automated data collection and processing
New to AdSync? Start with our Quick Start Guide to get up and running in minutes.

Quick Start Guide

Get started with AdSync in just a few steps:

Step 1: Account Setup

  1. Sign up for an AdSync account
  2. Verify your email address
  3. Complete your profile information

Step 2: Connect Your Advertising Accounts

  1. Navigate to Settings > Integrations
  2. Click "Connect" for each platform you want to use
  3. Follow the OAuth flow to authorize AdSync

Step 3: Create Your First Campaign

curl -X POST https://api.adsync.com/v1/campaigns \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "name": "My First Campaign", "platforms": ["google-ads", "meta-ads"], "budget": 1000, "targeting": { "locations": ["US"], "age_range": [25, 45] } }'
Success! Your campaign is now live across multiple platforms.

API Overview

The AdSync API provides programmatic access to all platform features. All API requests are made over HTTPS and use JSON for request and response bodies.

Base URL

https://api.adsync.com/v1

Authentication

All API requests require authentication using an API token in the Authorization header:

Authorization: Bearer YOUR_API_TOKEN

Common Endpoints

GET /campaigns

List all campaigns

POST /campaigns

Create a new campaign

GET /analytics/performance

Get performance analytics

Rate Limits

  • Standard: 1,000 requests per hour
  • Professional: 10,000 requests per hour
  • Enterprise: Unlimited

Creating Campaigns

Learn how to create and manage campaigns across multiple advertising platforms.

Campaign Types

  • Search Campaigns: Text ads that appear in search results
  • Display Campaigns: Visual ads on websites and apps
  • Video Campaigns: Video ads on YouTube and partner sites
  • Shopping Campaigns: Product ads with images and prices
  • Performance Max: AI-driven campaigns across all channels

Creating a Campaign

To create a campaign, you'll need to specify:

  1. Campaign name and type
  2. Target platforms
  3. Budget and bidding strategy
  4. Audience targeting
  5. Ad creatives
Important: Make sure your advertising accounts are connected before creating campaigns.