Slope measures how fast every B2B creator is growing — banking each video's views hour by hour from the moment it publishes. That history can't be bought or backfilled by anyone who wasn't watching. This API gives you the creators, their rankings, and those raw velocity curves.
slope_live_… — it's how the API knows it's you.https://yourslope.com/api/v1/creators?limit=10&key=YOUR_KEYUse the Slope API for me. My API key is YOUR_KEY — put it on every request
as a query parameter, like ?key=YOUR_KEY. The base URL is
https://yourslope.com/api/v1 and there are five read endpoints:
GET /search?q=<name> find a creator by name, returns their slug
GET /creators ranked B2B creators (?sort=velocity|reach|subscribers, ?limit, ?niche)
GET /creators/<slug> one creator: profile, accounts, videos + velocity curves
GET /content/<videoId> one video's hour-by-hour view-count history
GET /me my key's usage
Start by showing me the 10 fastest-growing creators (?sort=velocity).# create your account + key in ONE call (the key is shown once — save it)
curl -sXPOST https://yourslope.com/api/v1/keys -H 'content-type: application/json' \
-d '{"email":"you@company.com","password":"your-password"}'
# then pull data (header auth; ?key= works too)
curl -s "https://yourslope.com/api/v1/creators?sort=velocity&limit=10" \
-H 'Authorization: Bearer YOUR_KEY'/api/v1/search
{
"query": "warikoo", "count": 1,
"results": [
{ "name": "warikoo", "slug": "warikoo", "handle": "@warikoo",
"niche": "Entrepreneurship And Career", "subscribers": 7060000,
"velocityViewsPerHour": 12771, // current views/hr across their tracked videos
"url": "https://yourslope.com/warikoo" }
]
}
/api/v1/creators
{
"total": 1126, "count": 100, "page": 1, "hasMore": true,
"creators": [
{ "rank": 1, "slug": "jordan-reeves", "name": "Jordan Reeves", "handle": "@jordanbuilds",
"subscribers": 412000,
"crossPlatformReach": 5337000, // total audience across every platform they own
"velocityViewsPerHour": 1820 }, // current views/hr — the proprietary signal
…
]
}
/api/v1/creators/:slug
{
"person": { "slug": "jordan-reeves", "name": "Jordan Reeves" },
"rank": 14,
"accounts": [ { "platform": "youtube", "handle": "@jordanbuilds", "subscribers": 412000 } ],
"crossPlatformReach": 690000,
"audienceVelocity": { "subscribersPerHour": 128.5 }, // how fast their audience is growing right now
"videos": [
{ "videoId": "dQw4w9WgXcQ", "title": "…", "viewsPerHour": 1820,
"curve": [ { "t": "2026-06-20T15:08:54Z", "v": 71 }, { "t": "2026-06-20T15:53:57Z", "v": 2545 }, … ] },
…
]
}
/api/v1/content/:videoId
{
"content": { "videoId": "dQw4w9WgXcQ", "title": "…", "channelHandle": "@jordanbuilds",
"publishedAt": "2026-06-24T08:00:00Z", "latestViews": 344631 },
"viewsPerHour": 19114,
"firstTrackedViews": 240, // we were already watching at 240 views
"curve": [ { "views": 240, "observedAt": "2026-06-24T08:36:00Z" },
{ "views": 344631, "observedAt": "2026-06-25T05:54:48Z" }, … ]
}
/api/v1/me
{ "key": { "tier": "free", "label": "web" },
"usage": { "today": 142, "last30Days": 5031 } }
/api/v1/keys
{
"key": "slope_live_…", // shown ONCE — store it now
"tier": "free", "rateLimit": "600 requests/minute",
"dailyQuota": "1,000 requests/day (Free) — Pro is 50,000/day"
}
Three ways to send your key — easiest: put ?key=YOUR_KEY on the URL (works in a browser). In code, use the Authorization: Bearer YOUR_KEY or X-API-Key: YOUR_KEY header. Every read needs a key; a keyless call returns 401.
Free — 600 requests/minute, 1,000 requests/day, full dataset. Pro ($49/mo) — 3,000/minute, 50,000/day. The paywall is volume, not data. Manage keys at /account; see /pricing.
Time is the un-backfillable input. Anyone can look up a video's view count today. Nobody can go back and measure how fast it climbed in hour one, hour three, hour six — unless they were already watching when it published. Slope was watching. Every curve is history that cannot be reconstructed after the fact.
People-first. Every signal is keyed to a real human across every platform they own — not a faceless channel. crossPlatformReach is their TRUE total audience, a number no single-platform tool can produce.