Creator ScoreCard Data API

v1 — REST API for cross-tool data access

Overview

The Creator ScoreCard Data API provides programmatic access to the channel intelligence database, report snapshots, and aggregate statistics. Use it to power dashboards, calculators, research tools, and any application that needs YouTube creator data.

API Key Auth

Bearer token via Authorization header

Rate Limited

Per-key limits (configurable per key)

Scoped Access

channels:read, reports:read, stats:read

Authentication

All API requests require a valid API key passed in the Authorization header:

Authorization: Bearer csk_your_api_key_here

API keys are created from the Admin Panel under the Data API tab. Each key has configurable scopes, rate limits, and optional expiration. The full key is shown only once at creation — store it securely.

Security: API keys are stored as SHA-256 hashes. If a key is compromised, revoke it immediately from the Admin Panel and create a new one.

Rate Limiting

Each API key has per-minute and per-day rate limits. When exceeded, the API returns 429 Too Many Requests with a Retry-After header.

HeaderDescription
X-RateLimit-LimitRequests allowed per minute
X-RateLimit-RemainingRemaining requests this minute
Retry-AfterSeconds to wait before retrying (on 429)

Endpoints

Error Codes

StatusMeaningResolution
401Missing or invalid API keyCheck your Authorization header
403Insufficient scope or key revoked/expiredCheck key scopes and status in Admin Panel
404Resource not foundVerify the channel hash or report key
429Rate limit exceededWait for Retry-After seconds, then retry
500Internal server errorRetry after a moment; report if persistent