Quickstart

This guide walks through the minimum needed to call the Scrumball API: the base URL, an unauthenticated health check and a first authenticated request. Every code sample can be pasted into a terminal as-is.

Use the OpenAPI base URL directly for production integrations. Requests from `/docs` are for debugging only and are proxied through the Scrumball backend to avoid browser-side key exposure.

Base URL

text
https://openapi.scdata.cc
1. Sign in to Scrumball and open the dashboard
2. Confirm the account has trial or active subscription quota
3. Create an API key from Dashboard > API Keys
4. Send requests from your server using the real base URL

Health Check

bash
curl -X GET "https://openapi.scdata.cc/api/ping"

First Authenticated Call

bash
curl -X GET "https://openapi.scdata.cc/api/v1/tiktok/user/info?unique_id=nike" \
-H "Authorization: YOUR_API_KEY"

Try It behavior

Requests sent from `/docs` go through the Scrumball backend first and are then forwarded to the upstream OpenAPI service. For production integrations, call the base URL directly instead of depending on this proxy.