Influencer Subscriptions API
Monitor creators with webhook subscriptions
Is there an API to monitor creators continuously?
Yes. The Influencers.club Subscriptions endpoints let you subscribe to creators and receive their activity by webhook — new posts, profile changes and growth milestones — with full CRUD on subscriptions, per-subscription creator management, stats and CSV export.
Make the call
Both samples below are complete. Paste one in, swap the key, get a 200.
https://api-dashboard.influencers.club/public/v1/social/listening/subscription/
Authorization: Bearer <API_KEY>
Content type application/json
Rate 0.3 credits per creator per day
Full reference →
What comes back
A 200 with the page of creators and your remaining credit balance. Creator values below are elided — field names and types are exactly as published in the API schema.
The spec
| Parameter | Type | Accepted values | Behaviour |
|---|---|---|---|
| /public/v1/social/listening/subscription/ | endpoint | name, platform, event_type, handles and/or list_ids, notify_endpoints, filters | A subscription watches a set of creators on one platform for one event_type and delivers matching events to your notify_endpoints. Seed it with handles, Discovery list_ids or both; add more later via …/{id}/creators/ (handles, lists or a CSV). Billed 0.3 credits per creator per day. |
| platform | string, required | instagram · tiktok · youtube · … | Platform to monitor. |
| event_type | string, required | new_post · bio_change · follower_threshold · … | Which activity to watch. |
| handles · list_ids | array | Handles and/or Discovery list IDs | Creators to monitor. At least one of the two. |
| notify_endpoints | array, required | [{ "destination": url, "notify_type": "api" }] | Where events are delivered. |
Billing. 0.3 credits per creator, per day — however you group creators into subscriptions or campaigns. A creator tracked in several places counts once. Webhook deliveries and API calls are included.
How teams use this endpoint
Three ways this fits a creator-data workflow.
Watch a few creators
Handles in, webhook events out.
platform: "instagram", "event_type": "new_post", "handles": ["mrbeast", "khaby00"], "notify_endpoints": [{ "destination": "https://example.com/webhooks/influencers-club", "notify_type": "api" }]
Seed from a Discovery list
Monitor everyone in a saved list without pasting handles.
POST /public/v1/social/listening/subscription/ {
"name": "UK beauty micro-creators",
"platform": "tiktok",
"event_type": "new_post",
"list_ids": [57],
"notify_endpoints": [{ "destination": "https://example.com/webhooks/influencers-club", "notify_type": "api" }] }
Read what it caught
Events are also queryable, not just pushed.
GET /public/v1/social/listening/events/?subscription_id=1184&event_type=new_post
Other creator data you can access
Influencer API endpoints
Six platforms with full data, 40+ more in the social graph
Instagramdiscovery · full data
TikTokdiscovery · full data
YouTubediscovery · full data
X / Twitterdiscovery · full data
Twitchdiscovery · full data
OnlyFansdiscovery · full dataPlus Facebook, Pinterest, Reddit, LinkedIn, Discord, Snapchat,
Linktree and 40+ more via connected socials.
Frequently asked questions
What does this endpoint cost?+
0.3 credits per creator, per day. The same creator in several subscriptions or campaigns counts once, and webhook deliveries and API calls are included — 50 creators for 30 days is 450 credits.
Where can I find my API key?+
Create a free account. You will find your API key through the API side menu.
How do I monitor creators with webhook subscriptions using your API?+
Sign up for free and copy your API key from the dashboard. POST to /public/v1/social/listening/subscription/ with a platform, an event_type (new_post, bio_change, follower_threshold…), the creators to watch (handles and/or Discovery list_ids) and one or more notify_endpoints. You get back the subscription with its status, creator_count and delivery_health; events arrive at your endpoint as they happen and are also listable at /events/. 0.3 credits per creator per day.
What are your pricing plans and what do they include?+
Paid plans start at $249/month and use a flexible credit-based model.
Each API call consumes a specific number of credits depending on the endpoint and data depth. You can compare all tiers, credit amounts, and per-endpoint costs in the Pricing section of our API docs.
How can I get in touch with your team?+
Book a time on our calendar to talk to someone from our team and learn about the full capabilities of our API.