GETusers

Get User Subscriptions

See which premium accounts a user subscribes to. Analyze creator economy patterns and subscription-based engagement on Twitter.

Average response time: 85ms

Code Examples

const response = await fetch(
  'https://scrapebadger.com/v1/twitter/users/44196397/subscriptions',
  { headers: { 'x-api-key': 'YOUR_API_KEY' } }
);
const subs = await response.json();
subs.data.forEach(s => console.log(s.username));
Response
{
  "data": [
    { "id": "555", "username": "creator1", "name": "Content Creator", "followers_count": 50000 }
  ],
  "next_cursor": "sub_cursor_ghi"
}

API Reference

GET/v1/twitter/users/{user_id}/subscriptions
ParameterTypeRequiredDescription
user_idstringRequiredThe numeric user ID to get subscriptions for
cursorstringOptionalPagination cursor for next page

Use Cases

Audience Analysis

Profile your audience by analyzing follower demographics, interests, activity patterns, and engagement behavior.

Influencer Research

Identify and vet influencers by analyzing follower quality, engagement rates, audience demographics, and content authenticity.

Market Research

Analyze consumer conversations, product feedback, and market trends to inform product development and go-to-market strategies.

Competitor Analysis

Track competitor accounts, engagement rates, and content strategies to benchmark performance and identify opportunities.

Growth Tracking

Monitor follower growth, engagement trends, and content performance over time to optimize your Twitter strategy.

Content Curation

Aggregate top-performing content by topic or industry to fuel newsletters, social feeds, and content marketing calendars.

Frequently Asked Questions

Twitter Subscriptions let users pay monthly for exclusive content from creators. This endpoint shows which creators a user subscribes to.

The API returns the subscribed accounts but not the subscription price. Prices are set by individual creators.

Yes, subscription data is publicly visible for any account that has subscriptions enabled.

Yes. Tracking who subscribes to what reveals consumer spending patterns and premium content demand.