Skip to main content

agentic-facebook

agentic-facebook

Read your own logged-in Facebook — timelines, feed, comments, search, groups — into clean JSON.

PyPI Python versions CI License: MIT


Facebook has no usable API for reading your own feed. The Graph API was closed to this years ago, and what remains needs app review for permissions it will not grant an individual. The usual workaround — automating a browser and scraping rendered HTML — is slow and breaks with every layout change.

agentic-facebook takes a different route. Facebook's own web client gets its data from a single GraphQL endpoint; this reads that same endpoint using the session your own browser already has. You log in once, by hand, in a real browser. After that the tool stores no password, injects no credentials, and replays nobody else's token — it makes the request your browser would have made.

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

This is not the first tool that does this. facebook-graphql-scraper captures GraphQL responses via Selenium + selenium-wire with credential-based login. This project's difference is one of degree: it reuses a persisted browser-login profile instead of injecting a username/password, builds on scrapling's actively-maintained fetch stack instead of the largely-unmaintained selenium-wire, and since v0.3.0 reads the GraphQL API over plain HTTP with no browser in the hot path at all.

Features

  • Seven composable primitivesfetch (a timeline), about (who someone is), feed, comments, post, search, group. Posts carry url, author_url, and author_id, so one command's output is the next one's input.
  • Fast path by default — reads GraphQL over plain HTTP with no browser in the loop, falling back to a real browser automatically when that fails.
  • Precise date filtering--since/--until are a server-side filter, not scroll-until-you-see-it. (Pinned posts and posts whose date could not be located are kept regardless, because neither can be honestly judged against a window.)
  • Ranked or chronological, your choicefeed and group default to Facebook's ranking but take --sort recent, because "what's being discussed" and "what was posted since Tuesday" are different questions and a ranked feed can only answer the first.
  • Documented outputPost, Comment, Entity and ProfileField, as JSON or NDJSON.
  • Self-describingagentic-facebook catalog prints every command, flag, exit code and object type, generated from the code itself, so it cannot go stale.
  • Non-bypassable pacing floors — clamped in code, not asked for in prose. This is what keeps it a personal tool rather than a mass-scraper.

Quick start

Requires Python 3.11+. Install into an isolated environment — this package pins exact Playwright versions through scrapling, so sharing a virtualenv with another Playwright-based tool will break one of them:

uv tool install agentic-facebook     # or: pipx install agentic-facebook
agentic-facebook setup                          # one-time: provisions its own browser
agentic-facebook login                          # opens a real browser — log in by hand
agentic-facebook status                         # exit 0 = ready

Then fetch something. Results are written to a JSON file — only a one-line summary goes to stderr — so pass --output and read the file:

agentic-facebook fetch someone.profile --limit 20 --output posts.json
agentic-facebook about someone.profile --output about.json
agentic-facebook feed --limit 10 --output feed.json
agentic-facebook comments "https://www.facebook.com/someone/posts/pfbid02example" --limit 50 --output comments.json
agentic-facebook search "seoul" --type groups --limit 10 --output groups.json

An explicit --output path is emptied before the run starts, so a failed or zero-result run can never leave an earlier run's data behind — check the exit code before reading the file.

Usage overview

Each command does one thing; chaining them is where the value is. A post's url feeds comments; any author_url feeds fetch or about; a group entity's id feeds group. There is deliberately no crawl command — how deep to go is a judgment for the caller, not a flag.

# who engaged with this post, and what else do they post about?
agentic-facebook comments "<post-url>" --limit 20 --output c.json
#   → read c.json, collect distinct author_url, then:
agentic-facebook fetch "<author_url>" --limit 5 --output person.json
agentic-facebook about "<author_url>" --output whois.json   # …and who they actually are

See Chaining Recipes for worked multi-hop examples, and run agentic-facebook catalog for the authoritative command surface of the version you have installed.

Example output

{
  "id": "ZmVlZGJhY2s6MTIzNDU2Nzg5MDEyMzQ1",
  "url": "https://www.facebook.com/some.profile/posts/pfbid02example",
  "type": "status",
  "author_name": "Jane Example",
  "author_url": "https://www.facebook.com/some.profile",
  "author_id": "100000000000001",
  "created_at": "2026-06-30T09:15:36Z",
  "text": "Full post body, truncation-resolved if it was ever cut short...",
  "media": [],
  "links": [],
  "reaction_count": 370,
  "comment_count": 32,
  "share_count": 14,
  "shared_post": null,
  "source": "timeline",
  "captured_at": "2026-07-05T03:18:13.385206Z"
}

source (timeline | newsfeed | group | search | permalink) means merged results from several commands stay self-describing — permalink being the honest answer for a post fetched directly by URL, whose original surface is unknown. Full field reference: Output Schema, or agentic-facebook schema.

Documentation

Full documentation lives in docs/wiki/ — installation, quick start, architecture, chaining recipes, the complete CLI and Python API references, configuration, troubleshooting, and the security and privacy posture.

Project status

Alpha, pre-1.0, single maintainer. macOS is the tested, first-class platform; Linux likely works for the fetch/parse/CLI layer but is untested against a live session; Windows is unsupported. The output schema is additive-only — new fields are a minor bump; reinterpreting an existing one would be breaking.

Because it depends on Facebook's private GraphQL API, it will break when Facebook ships client changes. fetch falls back to a browser when that happens; the other commands need a package update. See FAQ and Troubleshooting.

Contributing

Issues and pull requests are welcome — see CONTRIBUTING.md. One rule matters more than the rest: never commit captured Facebook data, including as a test fixture.

License

MIT — see LICENSE.

Download files

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

Source Distribution

agentic_facebook-0.6.0.tar.gz (204.0 kB view details)

Uploaded Source

Built Distribution

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

agentic_facebook-0.6.0-py3-none-any.whl (83.0 kB view details)

Uploaded Python 3

File details

Details for the file agentic_facebook-0.6.0.tar.gz.

File metadata

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

File hashes

Hashes for agentic_facebook-0.6.0.tar.gz
Algorithm Hash digest
SHA256 d93aa5026f2397cfb6c1058342c4eca27e5e037041ff9676d7134f2bb8361d3c
MD5 a9920b6501cd7764e48277534cca173a
BLAKE2b-256 40d1929e7d9bb0d86a49683a6f94367cf3705c0fc0ca540ddae6f854776b6c74

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentic_facebook-0.6.0.tar.gz:

Publisher: publish.yml on tjdwls101010/Agentic-Facebook

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_facebook-0.6.0-py3-none-any.whl.

File metadata

File hashes

Hashes for agentic_facebook-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 03898d2e4785f604a36447b173062fb06aeece55d610a7dc8c91bc66ea229535
MD5 d10f119e9e8b24238ded7e01d55f1efb
BLAKE2b-256 5c88ba94c85d3b7e2932c1500733e3acbc7222c5f119cd8081f21788081a2927

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentic_facebook-0.6.0-py3-none-any.whl:

Publisher: publish.yml on tjdwls101010/Agentic-Facebook

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