No output yet. Submit the form to generate content.
Transparent pricing with no hidden fees. Pay as you go.
| Rule & Modality | Channel | Credits | Price (USD) | Official / Reference Price | Daily Savings |
|---|---|---|---|---|---|
trend-relevant-users otherTwitter | Starter | 0.01per post | $0.00005 | - | - |
Competitor pricing costs $45.450 more
ApiPass is 90.90% lower, estimated at multiple calls returning 10,000 returned posts total
trend-relevant-users
ApiPass Price
$0.0005
0.1 credits per post
Competitor Prices
Complete guide to using twitter-api-graphql
Discover the most influential and relevant users driving any Twitter trend in real time with a single GraphQL call.

The Twitter Graphql Trend Relevant Users API on ApiPass is a high-performance endpoint that returns the list of Twitter (X) users most strongly associated with a given trending topic or hashtag. Instead of manually scraping trend pages or stitching together multiple requests, you can pass a trend identifier and instantly retrieve the key voices — influencers, journalists, brands, and power users — who are shaping the conversation. Built on top of Twitter's internal GraphQL infrastructure, the endpoint delivers structured user objects (profile, follower counts, verification status, bio, and more) through ApiPass's unified gateway, so you get production-grade Twitter data without navigating X's developer approval process or paying enterprise-tier rates. Official-grade models at ApiPass pricing, with compatible integration in minutes. Test real models after signup before you top up. Access high-quality text, image, and video models. One API key manages calls across providers.
Start pulling trend-relevant user data immediately with just an ApiPass key, no lengthy application reviews required.
Access trend and user data at a fraction of what X's official enterprise tier charges, with transparent pay-as-you-go credits.
Access all Twitter data through a single endpoint, simplifying API interactions and making it easier to manage the high volume of information. Request specific fields and nested information structures, reducing over-fetching and enhancing performance.
Access live updates and changes in user data, tweets, and trends, allowing applications to stay current and relevant, so your dashboards and alerts never lag behind the conversation.
Manage Twitter, AI models, and other third-party services under one ApiPass account, one key, and one invoice.
High-availability infrastructure for production calls. Docs, examples, logs, and Playground are included.
Input any active trend identifier and receive a ranked list of users most relevant to that trend, including their profile metadata, follower counts, and engagement signals.
Each result includes screen name, display name, bio, verification status, profile/banner images, follower and following counts, and account creation date — enough to power downstream filtering and scoring without extra lookups.
The query language allows clients to request only the specific information they need and operates through a single endpoint, simplifying the data retrieval process and avoiding the need for multiple endpoints for different resources, so you can trim payloads to fit mobile, edge, or high-frequency use cases.
Automatically surface the top voices behind any trending hashtag so marketing teams can identify partnership and outreach candidates in minutes.
Display the people driving each trend alongside volume metrics, giving newsrooms, PR teams, and social listening platforms a "who's behind this" view.
Track which users are amplifying a trend tied to your brand, product, or industry, and route high-impact accounts to your response workflow.
Feed trend-relevant user data into LLM pipelines to generate narrative summaries, sentiment maps, or community graphs around any emerging topic.
Compare Nano Banana 2 with other models in the Nano Banana family to choose the best fit for your workflow.
X's official API requires a paid tier and developer approval to reach enterprise-grade endpoints, while credit-based pricing with no commitments. Pay only for what you use. on ApiPass means you can call the trend-relevant-users endpoint instantly at a much lower per-request cost — ideal for startups, indie developers, and high-volume workloads.
The official API splits trend and user lookups across separate v1.1, v2, and internal endpoints, often requiring multiple calls and complex auth flows. ApiPass exposes the GraphQL trend-relevant-users operation as a single, documented REST-style call with a clean JSON response, so you can ship features without reverse-engineering X's internal protocols.
Identify which creators to engage during a trending moment before competitors do.
Map the key accounts driving sentiment on ticker-related trends to feed quant or risk models.
Help reporters quickly find primary sources and eyewitness accounts behind a breaking trend.
Use the X API to get historical and real-time data points for your next research project. Researchers can study how trends propagate by analyzing the network of users most associated with each topic.
Create a free ApiPass account and grab your API key from the dashboard. Test real models after signup before you top up.
Open the Trend Relevant Users endpoint page, plug in a trend identifier, and inspect the live response in ApiPass's interactive playground before writing a single line of code.
Keep common request formats. Swap the baseURL and API key to migrate. Copy the example snippet (cURL, Python, Node.js) into your codebase, hook it into your trend monitoring or influencer workflow, and go live.
All APIs require authentication via Bearer Token.
Authorization: Bearer
Get trend-related users
The API accepts a JSON payload with the following structure:
1{
2 "model": "string",
3 "callBackUrl": "string (optional)",
4 "channel": "auto",
5 "input": {
6 "variables": {
7 "trendId": "string",
8 }
9 }
10}modelRequiredstringThe model name to use for generation
"twitter/graphql/trend-relevant-users"
callBackUrlOptionalstringCallback URL for task completion notifications. If omitted, no callback will be sent.
"https://your-domain.com/api/callback"
channelOptionalstringYou may specify the corresponding provider within APIPASS via the channel parameter; these providers handle the actual image and video generation tasks. APIPASS currently offers three provider options:
The default value for the channel parameter is auto. When enabled, APIPASS automatically allocates tasks across available providers based on real-time pricing and stability metrics to balance minimal cost and reliable performance. Retain the default auto value unless you have custom routing requirements.
Available options:
auto
The input object contains the following parameters:
input.variables.trendIdRequiredstring1983681844601069653
1curl -X POST "https://api.apipass.dev/api/v1/jobs/createTask" \
2 -H "Content-Type: application/json" \
3 -H "Authorization: Bearer YOUR_API_KEY" \
4 -d '{
5 "model": "twitter/graphql/user-by-screen-name",
6 "callBackUrl": "https://your-domain.com/api/callback",
7 "input": {
8 "variables": {
9 "trendId": "1983681844601069653"
10 }
11 }
12 }'1{
2 "code": 200,
3 "message": "success",
4 "data": {
5 "taskId": "task_12345678"
6 }
7}codeStatus code, 200 for success, others for failure
messageResponse message, error description when failed
data.taskIdTask ID for querying task status and results