Introducing the GSTATIAC API v2.0

Programmatic campaign deployment, bulk keyword management, and direct integration with your custom trading algorithms.

For high-volume media buyers, logging into a dashboard to manually tweak bids or upload keywords is a bottleneck. True scale requires automation. That's why we built GSTATIAC from the ground up as an API-first platform.

Today, we are thrilled to release GSTATIAC API v2.0, unlocking complete programmatic control over every aspect of your advertising campaigns.

What's New in v2.0?

1. Ultra-Low Latency REST Endpoints

We've re-architected our core routing layer to reduce API response times by 65%. Whether you are updating 10,000 keyword bids or pulling granular hourly reports, the v2.0 endpoints handle heavy payloads with sub-50ms latency.

2. Bulk Keyword and Creative Deployment

Launch massive long-tail search campaigns instantly. The new /v2/campaigns/batch endpoint allows you to submit up to 50,000 keywords, match types, and corresponding ad copies in a single POST request.

// Example: Deploying bulk search keywords via API v2.0
POST /api/v2/campaigns/camp_98234/keywords/batch
Headers: Authorization: Bearer {YOUR_API_KEY}

{
  "keywords": [
    {"text": "best ai video maker", "matchType": "EXACT", "cpc_bid": 1.45},
    {"text": "sora alternative free", "matchType": "PHRASE", "cpc_bid": 2.10}
  ],
  "engine_routing": ["GOOGLE", "BING"],
  "auto_optimize": true
}

3. Webhook Subscriptions

Stop aggressively polling our API for status updates. v2.0 introduces real-time webhooks. Subscribe your server to events like campaign.approved, budget.depleted, or conversion.recorded, and we will push the JSON payloads directly to your endpoint.

4. Custom Algorithm Integration (Bring Your Own AI)

While our Nexus-GST™ engine is incredibly powerful, we know some enterprise clients possess proprietary bidding algorithms. The v2.0 API allows you to bypass our automated bidding and feed your own real-time bid adjustments directly into the auction via the /v2/bidding/override endpoint.

Rate Limits & Authentication

API v2.0 utilizes standard Bearer token authentication. Pro tier users receive 1,000 requests per minute, while Enterprise users are granted dedicated infrastructure with limits of up to 10,000 requests per minute.

💡 Documentation: The complete Swagger documentation and Postman collections are now available in your user dashboard under the "Developer Settings" tab. We also provide official SDKs for Node.js, Python, and Go.

Getting Started

The v2.0 API is backwards-compatible with v1.x endpoints, meaning your existing scripts won't break. However, we highly recommend migrating to the new endpoints to take advantage of the speed improvements and bulk operations.

Contact your account manager to generate your v2.0 API keys today.

Back to All Articles