PayWeave Twitter

X/Twitter data — tweets, users, communities, lists, articles, and trends.

MPPx402USDC per call · no keys, no accounts
Endpoints29 items · USD per call
  1. 01
    GET
    /articles/by/id
    Retrieve the full content of an X Article by the tweet ID of the post that hosts it. Returns article title, preview text, cover image, publish date, and full article content as Markdown (headings, bold, italic, lists, images). Not available in the official X API.
    $0.002
    skill.md ↗
  2. 02
    GET
    /communities/by/id
    Retrieve full details of a specific X Community by its numeric ID: name, description, member count, moderator count, join policy, topic, rules, banner image, and admin/creator profiles. Returns X v2 API-compatible JSON with additional fields.
    $0.000
    skill.md ↗
  3. 03
    GET
    /communities/members
    Get a paginated list of members belonging to a specific X Community (full user profiles). No equivalent in the official X API. Returns up to 20 profiles per page; use `next_token` to paginate.
    $0.007
    skill.md ↗
  4. 04
    GET
    /communities/posts
    Get the latest posts from a specific X Community, with author profiles. No equivalent in the official X API. Returns up to 20 tweets per page; use `next_token` to paginate.
    $0.006
    skill.md ↗
  5. 05
    GET
    /communities/moderators
    Get the moderators of a specific X Community by its numeric ID (full user profiles). Query params: id (required), next_token (cursor). Up to 20 per page.
    $0.007
    skill.md ↗
  6. 06
    GET
    /communities/all-posts
    Search the latest posts across all X Communities by keyword, with author profiles. Query params: query (required), next_token (cursor). Up to 20 per page.
    $0.006
    skill.md ↗
  7. 07
    GET
    /lists/members
    Get the members of a Twitter/X List by its numeric List ID (full user profiles). Returns up to 20 profiles per page; use `next_token` to paginate.
    $0.007
    skill.md ↗
  8. 08
    GET
    /lists/followers
    Retrieve the users who follow a specific Twitter/X List by its ID (full user profiles). Returns up to 20 profiles per page; use `next_token` to paginate.
    $0.007
    skill.md ↗
  9. 09
    GET
    /lists/tweets
    Get the latest tweets from a Twitter/X List by its numeric List ID, with author profiles. Use `next_token` to paginate.
    $0.006
    skill.md ↗
  10. 10
    POST
    /tweets
    Bulk look up multiple Twitter/X tweets by their numeric tweet IDs in a single request (max 50). Each tweet includes full text, author profile, and engagement metrics. Body: { "ids": ["123", "456"] } or { "ids": "123,456" }.
    $0.01
    skill.md ↗
  11. 11
    DELETE
    /tweets
    Alias of POST /tweets kept for X v2 API compatibility — performs the same bulk tweet lookup, not a delete (upstream exposes no bulk-delete). Query param: ids (comma-separated numeric tweet IDs, max 50).
    $0.01
    skill.md ↗
  12. 12
    GET
    /tweets/search
    Search recent tweets using X advanced-search syntax (operators like from:, to:, since:, until:, filter:). Query params: query (required), type ("Latest" default | "Top"), next_token (cursor). Returns up to 20 tweets per page.
    $0.006
    skill.md ↗
  13. 13
    GET
    /tweets/replies
    Get the replies to a tweet by its numeric tweet ID, each with author profile and engagement metrics. Query params: id (required), next_token (cursor). Up to 20 per page.
    $0.006
    skill.md ↗
  14. 14
    GET
    /tweets/quotes
    Get the quote-tweets of a tweet by its numeric tweet ID. Query params: id (required), next_token (cursor). Up to 20 per page.
    $0.006
    skill.md ↗
  15. 15
    GET
    /tweets/retweeters
    Get the users who retweeted a tweet by its numeric tweet ID (full profiles). Query params: id (required), next_token (cursor). Up to 20 per page.
    $0.007
    skill.md ↗
  16. 16
    GET
    /tweets/thread
    Get the thread/conversation context around a tweet by its numeric tweet ID (the surrounding tweets in the thread). Query param: id (required).
    $0.006
    skill.md ↗
  17. 17
    GET
    /users/by/username
    Retrieve a Twitter/X user profile by screen name (handle): id, name, bio, follower/following counts, verification, profile & banner images, location, and creation date. Query param: username (without @).
    $0.001
    skill.md ↗
  18. 18
    GET
    /users/tweets
    Get a user's latest tweets by handle or numeric user ID, newest first, each with full text and engagement metrics. Query params: username OR userId (userId preferred), include_replies (default false), next_token (cursor). Returns up to 20 tweets per page.
    $0.006
    skill.md ↗
  19. 19
    GET
    /users/about
    Get a user's profile "about" details (join date, category, verification, and other profile metadata) by screen name. Query param: username (without @).
    $0.001
    skill.md ↗
  20. 20
    GET
    /users/by/ids
    Bulk look up multiple Twitter/X user profiles by their numeric user IDs in a single request (max 50). Query param: ids (comma-separated numeric user IDs).
    $0.02
    skill.md ↗
  21. 21
    GET
    /users/search
    Search for Twitter/X users by keyword (matches names, handles, bios). Query params: query (required), next_token (cursor). Returns full profiles.
    $0.007
    skill.md ↗
  22. 22
    GET
    /users/mentions
    Get tweets that mention a user by their screen name, newest first. Query params: username (without @, required), next_token (cursor). Up to 20 per page.
    $0.006
    skill.md ↗
  23. 23
    GET
    /users/followers
    Get a user's followers (full profiles) by screen name, most recent first. Query params: username (without @, required), next_token (cursor). Up to 20 per page.
    $0.007
    skill.md ↗
  24. 24
    GET
    /users/followers/ids
    Get a user's follower IDs in bulk — lightweight, numeric IDs only (no profiles). Query params: username (without @, required), next_token (cursor).
    $0.006
    skill.md ↗
  25. 25
    GET
    /users/verified-followers
    Get a user's verified (blue-check) followers (full profiles). NOTE: this endpoint is keyed by numeric user ID. Query params: userId (required), next_token (cursor). Up to 20 per page.
    $0.007
    skill.md ↗
  26. 26
    GET
    /users/following
    Get the accounts a user follows (full profiles) by screen name. Query params: username (without @, required), next_token (cursor). Up to 20 per page.
    $0.007
    skill.md ↗
  27. 27
    GET
    /users/follow-relationship
    Check the follow relationship between two users by handle: whether `source` follows `target` and vice versa. Query params: source (required), target (required).
    $0.001
    skill.md ↗
  28. 28
    GET
    /trends
    Get the trending topics for a location by its WOEID (Yahoo "Where On Earth ID"), each with name, search query, and rank. Query params: woeid (required, e.g. 1 for worldwide), count (optional, min/default 30).
    $0.001
    skill.md ↗
  29. 29
    GET
    /spaces/by/id
    Retrieve details of an X Space by its numeric ID: title, state, host/speaker profiles, participant counts, and timestamps. Query param: id (required).
    $0.001
    skill.md ↗