← 返回
开发者工具 中文

AgentBox Twitter

Twitter/X research via paid API: search tweets with 50+ operators, fetch tweets with threads/replies/quotes, get user profiles with tweets/followers/followin...
通过付费API研究Twitter/X:支持50多种运算符搜索推文,抓取包含推文串/回复/引用的推文,获取含推文/粉丝/关注列表的用户资料。
tenequm
开发者工具 clawhub v1.0.0 1 版本 99837.7 Key: 无需
★ 0
Stars
📥 615
下载
💾 8
安装
1
版本
#latest

概述

Twitter Research

Paid Twitter/X data API at https://twitter.x402.agentbox.fyi. Costs $0.003 USDC per call via x402 on Solana. Use the x402_payment tool for all requests.

Endpoints

Search Tweets

Find tweets matching a query with 50+ advanced operators.

x402_payment({
  "url": "https://twitter.x402.agentbox.fyi/search",
  "method": "GET",
  "params": "{\"q\": \"from:elonmusk AI\", \"type\": \"Latest\", \"limit\": 20}"
})

Parameters:

ParamTypeDefaultDescription
-----------------------------------
qstringrequiredSearch query with operators
type"Latest" or "Top"LatestSort by recency or popularity
limit1-20020Max tweets to return
cursorstring-Pagination cursor from previous response

Search operators:

OperatorExampleDescription
--------------------------------
from:userfrom:elonmuskTweets by user
to:userto:elonmuskReplies to user
@user@solanaMentioning user
min_faves:Nmin_faves:100Minimum likes
min_retweets:Nmin_retweets:50Minimum retweets
min_replies:Nmin_replies:10Minimum replies
filter:mediafilter:mediaHas media
filter:imagesfilter:imagesHas images
filter:videosfilter:videosHas video
filter:linksfilter:linksHas links
filter:repliesfilter:repliesOnly replies
-filter:replies-filter:repliesExclude replies
since:datesince:2025-01-01After date
until:dateuntil:2025-12-31Before date
within_time:Nhwithin_time:24hLast N hours
lang:codelang:enLanguage filter
conversation_id:IDconversation_id:123In conversation
filter:self_threadsfrom:user filter:self_threadsUser's thread replies

Combine operators: from:elonmusk AI min_faves:100 -filter:replies within_time:7d

Response: { query, tweets[], count, hasMore, nextCursor, summary }

The summary object includes: totalLikes, totalRetweets, totalReplies, avgLikes, maxLikes, topTweetId.

Fetch Tweets

Get tweet(s) by ID or URL with optional thread, replies, and quotes.

x402_payment({
  "url": "https://twitter.x402.agentbox.fyi/tweet/1585841080431321088",
  "method": "GET",
  "params": "{\"include\": \"thread,replies\", \"limit\": 50}"
})

URL format: /tweet/{ref} where ref is:

  • Tweet ID: 1585841080431321088
  • Comma-separated IDs: 123,456,789 (batch fetch, no includes)

Parameters:

ParamTypeDefaultDescription
-----------------------------------
includestring-Comma-separated: thread, replies, quotes
limit1-20050Max replies/quotes to return

Include options (single tweet only):

  • thread - author's self-reply chain in the conversation
  • replies - replies from other users
  • quotes - quote tweets of this tweet

Response: { tweets[], count, parent?, thread?, replies?, quotes? }

If the fetched tweet is a reply, parent is auto-included with the replied-to tweet.

Fetch Users

Get user profile(s) with optional tweets, followers, or following.

x402_payment({
  "url": "https://twitter.x402.agentbox.fyi/user/elonmusk",
  "method": "GET",
  "params": "{\"include\": \"tweets\", \"limit\": 20}"
})

URL format: /user/{ref} where ref is:

  • Username: elonmusk or @elonmusk
  • User ID: 44196397
  • Comma-separated IDs: 123,456 (batch fetch, no includes)

Parameters:

ParamTypeDefaultDescription
-----------------------------------
includestring-Comma-separated: tweets, followers, following
limit1-20050Max tweets/followers/following to return
include_repliesbooleanfalseInclude replies in user's tweets

Response (single): { user, tweets?, followers?, following? }

Response (batch): { users[], count, hasMore }

Usage Patterns

Monitor a topic

x402_payment({
  "url": "https://twitter.x402.agentbox.fyi/search",
  "method": "GET",
  "params": "{\"q\": \"x402 OR \\\"402 payment\\\" min_faves:5 within_time:24h\", \"type\": \"Latest\"}"
})

Get a tweet with full context

x402_payment({
  "url": "https://twitter.x402.agentbox.fyi/tweet/1585841080431321088",
  "method": "GET",
  "params": "{\"include\": \"thread,replies,quotes\", \"limit\": 20}"
})

Research a user

x402_payment({
  "url": "https://twitter.x402.agentbox.fyi/user/CoinbaseDev",
  "method": "GET",
  "params": "{\"include\": \"tweets\", \"limit\": 50}"
})

Paginate results

Use nextCursor from a previous response:

x402_payment({
  "url": "https://twitter.x402.agentbox.fyi/search",
  "method": "GET",
  "params": "{\"q\": \"from:elonmusk\", \"cursor\": \"DAABCgAB...\"}"
})

Cost

Every call costs $0.003 USDC on Solana mainnet. Each paginated request is a separate call. Plan queries to minimize calls - use specific operators and reasonable limits.

Errors

HTTPMeaning
---------------
400Invalid parameters (check query syntax)
402Payment required (handled automatically by x402_payment)
404Tweet or user not found
502Upstream API error

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 02:50 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 68 📥 180,372

mcp-best-practices

tenequm
使用 TypeScript SDK(规格 2025-11-25,SDK v1.29 / v2 alpha)构建、保护并优化生产级 MCP 服务器。适用于构建或审查 MCP 服务器。
★ 0 📥 808
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 672 📥 324,405