Home Features Influencer Discovery Search Influencer Influencer Analytics Campaign Reports Brand Analysis Brand Comparison Brand Monitoring Free Tools Instagram Fake Followers Instagram ER Calculator YouTube ER Calculator TikTok ER Calculator Company About Careers FAQ Press Case Studies Blog For Creators Contact Developers Developer Hub API Docs Authentication Get API Key Changelog More Pricing Login
Get Started โ†’
Dreabee Developer Platform

Build on the
influencer data
layer

Access 200K+ creator profiles, real-time engagement analytics, audience quality scores, and brand intelligence through a single REST API. Ship in hours, not weeks.

200K+
Creator profiles
99.9%
API uptime
<120ms
Median latency
REST
+ Webhooks
dreabee-api ยท quickstart.js
// Fetch influencer analytics in one call
const response = await fetch(
'https://api.dreabee.com/v1/influencers/search', {
method: 'POST',
headers: { 'X-API-Key': process.env.DREABEE_KEY },
body: JSON.stringify({
platform: 'instagram',
niche: 'fashion',
min_quality_score: 75,
followers: { min: 10000, max: 500000 }
})
}
);
const data = await response.json();
// โ†’ { results: [...], total: 2847, page: 1 }
โ†’ 200 OK ยท 94ms ยท 2847 results
$
Base URL https://api.dreabee.com/v1 v1.4.2 stable What's new in v1.4 โ†’

Everything you need to build influencer tooling

Six core endpoint groups covering the full influencer intelligence stack โ€” from discovery to campaign measurement.

๐Ÿ”
Influencer Search
Filter 200K+ creators by platform, niche, follower count, engagement rate, audience demographics, language, and location. Supports pagination and sorting.
GET /influencers/search
๐Ÿ“Š
Creator Analytics
Full audience breakdown, quality score, engagement history, top posts, follower growth trend, and fake follower percentage for any public creator.
GET /influencers/:handle
๐Ÿ›ก๏ธ
Audience Quality
Programmatic access to the fake follower detection model. Returns authenticity breakdown: real, suspicious, mass follower, and bot percentages.
POST /quality/analyse
๐Ÿ“‹
Campaign Tracking
Create campaigns, add creators, and pull live performance metrics including reach, impressions, engagement, and conversions via webhook or polling.
POST /campaigns
๐Ÿท๏ธ
Brand Intelligence
Query which influencers are working with any brand, estimated spend, historical partnerships, and share-of-voice across categories.
GET /brands/:name
๐Ÿ””
Webhooks
Subscribe to real-time events: new campaign posts, follower count changes, quality score updates, brand mention alerts. Signed payloads via HMAC-SHA256.
POST /webhooks

Install and go in under 2 minutes

Official libraries maintained by the Dreabee team. Community SDKs listed in the docs.

Need Ruby, Java, or .NET? Let us know โ†’
Quickstart

From zero to first API call in 4 steps

No complex OAuth flows. Just an API key and you're live.

STEP 01
Get your API key
Sign up for free and grab your key from the dashboard. Free plan includes 1,000 API calls/month.
# Your key lives here after signup
X-API-Key: db_live_xxxxxxxxxxxxxxxxxxxx
STEP 02
Install the SDK
Or call the REST API directly โ€” no library required. We'll use Node here.
$ npm install dreabee
added 1 package in 0.8s
STEP 03
Make your first call
Search for influencers matching your brief. Returns full analytics per creator.
import Dreabee from 'dreabee';
const db = new Dreabee(process.env.DB_KEY);
const results = await db.influencers.search({
platform: 'instagram',
niche: 'fitness',
min_quality_score: 80
});
STEP 04
Handle the response
Every response is typed JSON. Errors use standard HTTP codes with a descriptive message field.
// results.data[0]
{
handle: "@fitlife_rohan",
followers: 142800,
engagement_rate: 5.8,
quality_score: 88,
fake_pct: 4.2
}

Transparent, predictable limits

Every plan includes burst allowances. Rate limit headers are returned on every response.

Plan Requests / month Rate limit Burst Webhooks SLA
Free 1,000 10 req/min 20 req/min (1 min) โ€” Best effort
Starter 50,000 60 req/min 120 req/min (5 min) 5 endpoints 99.5%
Pro 500,000 300 req/min 600 req/min (10 min) Unlimited 99.9%
Enterprise Unlimited Custom Custom Unlimited + priority 99.99%

Rate limit headers: X-RateLimit-Limit ยท X-RateLimit-Remaining ยท X-RateLimit-Reset