Skip to main content

Developers

Build on creator intelligence

REST API, webhooks, and API keys for programmatic access to VANTAGEVID's YouTube channel intelligence, hook generation, and SEO analysis.

VANTAGEVID is pre-launch — there is no live account system yet, so API keys and webhook delivery below describe what will be available once the product goes live. Join the waitlist to be notified when API access opens.

Developer features

API Key Access

Generate API keys from your account settings. Authenticate with Bearer tokens. Rate limits scale with your plan — 100 req/day on Creator, 1,000 on Pro, unlimited on Agency.

REST API

JSON REST API covering: channel outlier scans, hook generation, SEO keyword analysis, channel statistics, and account usage. Swagger documentation available at /api/docs.

Webhooks

Subscribe to events: scan.completed, outlier.detected, hook.generated. Each delivery includes the full result payload, HMAC signature for verification, and automatic retry on failure.

SDK Roadmap

A TypeScript/Node.js SDK is planned post-launch. In the meantime, the REST API works with any HTTP client. Sample code is available for Node.js, Python, and cURL.

Quick start

intelligence.ts
// Scan a channel for outliers
const response = await fetch('https://vantagevid.io/api/v1/intelligence/outliers', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer YOUR_API_KEY',
  },
  body: JSON.stringify({ handle: '@yourchannel' }),
});

const data = await response.json();
// data.outliers — array of videos with outlier scores and performance ratios

Developer FAQ

Does VANTAGEVID have a public API?

VANTAGEVID provides API key access for programmatic access to channel intelligence, hook generation, and SEO features. API keys are available from account settings.

What webhook events does VANTAGEVID support?

Webhooks fire for: scan.completed, outlier.detected, and hook.generated. Each includes a full JSON payload and an HMAC-SHA256 signature for verification.

What plan is required for API access?

API key access is available on all paid plans. Rate limits: Creator (100 req/day), Pro (1,000 req/day), Agency (unlimited).