readx.sh publishes 8 machine-payable endpoints over the x402 protocol, priced from $0.01 to $0.01 per call. Each was probed directly; the response code below is what it returned.
| Endpoint | Method | Price | Probe |
|---|---|---|---|
| /api/:name/followers_web | GET | $0.01 | 200 |
| /api/:name/following_web | GET | $0.01 | 200 |
| /api/:name/verified_followers | GET | $0.01 | 200 |
| /api/lists/:id/members | GET | $0.01 | 200 |
| /api/search/tweets | GET | $0.01 | 200 |
| /api/tools/get_user_ids | GET | $0.01 | 200 |
| /api/tools/get_usernames | GET | $0.01 | 200 |
| /api/trends | GET | $0.01 | 402 |
A user's followers as shown on the web (~70 per page, capped at ~800; paginate with cursor until has_more is false). Example: GET /api/jack/followers_web
Accounts a user follows as shown on the web (~70 per page, capped at ~800; paginate with cursor until has_more is false). Example: GET /api/jack/following_web
A user's verified followers (~200 per page; paginate with cursor until has_more is false). Example: GET /api/jack/verified_followers
The users that belong to a list (paginate with cursor until has_more is false). Example: GET /api/lists/84839422/members
Search for tweets by query (optional product filter; paginate with cursor). Example: GET /api/search/tweets?q=typescript
Resolve up to 20 @handles to numeric user ids (map; null on per-handle failure). Example: GET /api/tools/get_user_ids?usernames=jack,elonmusk
Resolve up to 20 numeric user ids to @usernames (map; null on per-id failure). Example: GET /api/tools/get_usernames?user_ids=12,44196397
Trending topics for a location (worldwide by default; filter with country or woeid). Example: GET /api/trends?country=US