delimit_x_fetch
Retrieve specific tweets by ID or URL using a cached API. Avoid repeat calls when fetching individual or batch tweets.
Instructions
Fetch tweets from X by id or URL via twttr241 RapidAPI (LED-825).
When to use: to surgically fetch one or many tweets by id/URL, sharing the cached path with delimit_social_target so repeats are free. When NOT to use: to scan for new content (use delimit_social_target) or fetch a Reddit thread (delimit_reddit_fetch_thread).
Sibling contrast: delimit_social_target scans for opportunities; delimit_reddit_fetch_thread is the Reddit equivalent; this is the X (Twitter) single/batch fetcher.
Side effects: read-only network call via twttr241 (RapidAPI). Inherits the LRU + SQLite cache + budget gate from the social-target scanner — repeated reads are free. No writes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id_or_url | No | Single status id ("2048825010371039648") OR a full x.com / twitter.com URL — id is extracted automatically. Mutually exclusive with `ids`. | |
| ids | No | Comma-separated list of status ids OR URLs for a batch fetch. Each is normalized to a status id and fetched independently. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||