x_read
Read live X/Twitter data: look up a single tweet or user profile, batch-read up to 100 tweets or users at once, check whether one account follows another, fetch trending topics by region, extract a long-form article, or download tweet media. Pay per call in USDC — no API key, no signup; failed calls are never charged.
Guidance: resource=get-tweet|get-user (id), batch-tweets|batch-users (ids array, ≤100), check-follower (source+target usernames), trends (optional woeid/count), article (tweet id), followers-you-know (id + mandatory resultsLimit), download-media (id or ids ≤50 — returns media file URLs on THIS origin; links live 7 days). Fixed-price per call/id except followers-you-know which is per-result.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Tweet ID, user ID, or username (depends on resource). | |
| ids | No | batch-tweets|batch-users: up to 100 tweet IDs or user IDs/usernames. | |
| count | No | trends: number of trends to return. | |
| woeid | No | trends: region WOEID (default 1 = worldwide). | |
| source | No | check-follower: source username. | |
| target | No | check-follower: target username. | |
| resource | Yes | Which read operation to run. | |
| resultsLimit | No | Mandatory for followers-you-know: max results, billed per result. |