← ClaudeAtlas

x-researchlisted

Researches X (formerly Twitter) profiles and posts via the Crawlora API, returning clean JSON. Use when the user wants a public X profile's stats, a user's recent posts, or a single post's content/engagement — instead of scraping x.com or using the official (paid, rate-limited) X API.
Crawlora-org/crawlora-skills · ★ 0 · Data & Documents · score 72
Install: claude install-skill Crawlora-org/crawlora-skills
# X (Twitter) research Look up public X profiles, recent posts, and individual post content/engagement — all as normalized JSON from the Crawlora API, no browser automation or official X API access required. ## When to use this skill - "What's <handle>'s profile / follower count on X?" - "Pull <handle>'s recent posts on X." - "What does this X post say, and what's its engagement?" - Competitor or influencer social-listening on X without X API access. ## Setup (one-time) - Get a free Crawlora API key (2,000 credits/mo, no card) at [https://crawlora.net](https://crawlora.net?utm_source=github&utm_medium=referral&utm_campaign=crawlora-skills). - `export CRAWLORA_API_KEY=sk_your_key_here` - All requests: `x-api-key: $CRAWLORA_API_KEY` against `https://api.crawlora.net/api/v1`. Missing/invalid key → `401`. ## How it works 1. **Profile** — `GET /x/profile/{username}` returns public profile details for an X username, including visible counts and profile media when available. 2. **Profile posts** — `GET /x/profile/{username}/posts` returns posts from the first public profile page payload (defaults to 20, max 50 via `limit`). It does not paginate replies, media-only tabs, or search results. 3. **Post detail** — `GET /x/post/{id}` returns a single public post by numeric post id, including author, text, visible metrics, and a quoted post preview when present. Pass `username` to require the author match (mismatches return 404). Full endpoint list, method