Skip to main content

Read-only scraping of logged-in X/Twitter data via a harvest-then-replay hybrid: a stealth-browser login harvests the session once, then reads are replayed over httpx. No client-transaction-id replay.

Project description

agentic-x

agentic-x

Read-only scraping of logged-in X/Twitter data via a harvest-then-replay hybrid: a stealth browser (or a cookie import) logs you in once and harvests the session, then every read afterward is a plain httpx GraphQL request — no browser in the loop.

Reads your home feed, any profile's tweets and replies, a tweet's thread, search, and the social graph (following / followers / retweeters). Each command is a single-target primitive; chaining them into multi-hop exploration is a caller's job, not the CLI's.

Read DISCLAIMER.md before using this. Using this tool violates X's Terms of Service, publishing it exposes its maintainer, and scraping other people's tweets can make you a data controller over their personal data under GDPR. Use a dedicated/throwaway account, not your primary one.

Installation

Base install — cookie-import login only, no browser dependency:

pip install agentic-twitter

The [browser] extra — adds a stealth browser for agentic-x login:

pip install "agentic-twitter[browser]"

If you only ever import cookies from a session you already have (e.g. exported from your own logged-in browser), the base install is all you need.

Quick Start

# 1. One-time interactive login — opens a real browser window, you log in by hand.
agentic-x login

# 2. Fetch a profile's tweets.
agentic-x fetch nasa --limit 50

CLI overview

Command Purpose
agentic-x login One-time login: headed stealth browser by default, or --cookies FILE to import an existing session
agentic-x status Check whether the persisted session is logged in, expired, or rate-limited
agentic-x setup Provision the login browser into an isolated cache (requires [browser])
agentic-x doctor Authenticated round-trip + query-id freshness check (--refresh re-anchors query-ids from x.com's main.js, browser-free)
agentic-x catalog Machine-readable JSON description of every command, argument and exit code (offline)
agentic-x schema The output object schema; --json emits JSON Schema (offline)
agentic-x feed Your home feed — takes no target, the feed belongs to the session
agentic-x fetch <identifier> A profile's tweets/media (--limit, --since, --until, --by screen_name|id, --replies†)
agentic-x search <query> Tweets matching a query or advanced operators (--product latest|top)†
agentic-x tweet <identifier> A single tweet plus its reply/conversation thread (--replies)
agentic-x following <identifier> Accounts a user follows — emits User objects
agentic-x followers <identifier> Accounts following a user — emits User objects†
agentic-x retweeters <tweet> Accounts that retweeted a tweet — emits User objects

† Needs a generated x-client-transaction-id — see below.

All read commands share --format json|ndjson, --output PATH, --profile NAME, --profile-dir PATH, --wait-on-limit, --max-wait, --raw (+ --no-redact), and -v/--verbose. See the CLI Reference for every flag and exit code — or just run agentic-x catalog for the same thing as JSON.

The transaction-id wall, and how this package gets past it

Three operations — SearchTimeline (search), UserTweetsAndReplies (fetch --replies) and Followers — reject any request without a fresh x-client-transaction-id header. The header is single-use: replaying even a real captured one fails, because X's own client already spent it. So it cannot be harvested once and reused the way session cookies and query-ids are.

Since v0.3.0 this package generates that header per request, in pure Python, from ingredients x.com serves on its own home page (algorithm ported from the MIT-licensed XClientTransaction). Verified working 2026-07-20.

Be honest with yourself about this: it is reverse-engineered, and X can invalidate it with any client deploy. It is the one part of this package where "it worked yesterday" is not evidence it works today. When it breaks, those three commands exit 4 with a clear message; everything else keeps working. search and fetch --replies additionally fall back to driving the stealth browser and reading the response X's own client receives (requires the [browser] extra) — that returns only the first page, and says so.

What X no longer exposes

likers is not implemented and will not be: X has removed the likers list entirely. /status/<id>/likes redirects to the tweet, and the operation name appears in none of the JavaScript chunks x.com serves today (checked 2026-07-20, all 685 of them). For quoters, use agentic-x search "quoted_tweet_id:<id>" — that is exactly what X's own /quotes tab does.

Python API

from agentic_x import XScraper

XScraper(profile="default").login()  # one-time, opens a headed browser

with XScraper(profile="default") as x:
    tweets = x.fetch_user_tweets("nasa", limit=50)
    for tweet in x.iter_user_tweets("nasa", limit=50):
        ...  # must be consumed inside the `with` block

    x.fetch_tweet("https://x.com/nasa/status/1234567890")
    x.fetch_home(limit=20)                  # your home feed
    x.search("artemis", product="Latest")   # needs a generated transaction id
    x.fetch_user_tweets("nasa", replies=True, limit=50)

    # Social graph -- these return `User`, not `Tweet`.
    x.fetch_following("nasa", limit=100)
    x.fetch_followers("nasa", limit=100)    # needs a generated transaction id
    x.fetch_retweeters("1234567890", limit=100)

Documentation

This README covers the essentials. For everything else, see the wiki:

Contributing

Issues and pull requests are welcome — see CONTRIBUTING.md for setup, tests, and the one rule that is specific to this project (never commit a real capture). Security reports go through SECURITY.md, privately, never a public issue. Participation is covered by the Code of Conduct.

License

MIT — see LICENSE. The license covers the code; it does not cover what you do with the data you collect (see DISCLAIMER.md).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agentic_twitter-0.4.0.tar.gz (181.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agentic_twitter-0.4.0-py3-none-any.whl (72.3 kB view details)

Uploaded Python 3

File details

Details for the file agentic_twitter-0.4.0.tar.gz.

File metadata

  • Download URL: agentic_twitter-0.4.0.tar.gz
  • Upload date:
  • Size: 181.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for agentic_twitter-0.4.0.tar.gz
Algorithm Hash digest
SHA256 4a1974de3e8b94e68cf2a435cc862824176e94a1447b483f0d75c8847279c470
MD5 b55e15d55b037dd62e0e3a95308f2bc4
BLAKE2b-256 137ee1ac07d22f433b953d5b665bbdd530dec55fea0bc9c3deece7e25afa1726

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentic_twitter-0.4.0.tar.gz:

Publisher: publish.yml on tjdwls101010/Agentic-X

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agentic_twitter-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: agentic_twitter-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 72.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for agentic_twitter-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3e04cd187bd0a17533960e0986f835d17808d8b0fbaa80bc5af0dfb5d6d55a23
MD5 9f5c763d260f7aad25493704ad38332d
BLAKE2b-256 b5e255d3d3350d0b2e7a19efb2f0fb3da3fe568d7f7d4cf2054f10ce8222d87c

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentic_twitter-0.4.0-py3-none-any.whl:

Publisher: publish.yml on tjdwls101010/Agentic-X

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page