โ† All skills
Tencent SkillHub ยท Developer Tools

Twitter/X scraper with Apify actors

Use this skill when the user needs Twitter/X audience collection through Apify actors (followers/following/both) with optional email enrichment, username ext...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Use this skill when the user needs Twitter/X audience collection through Apify actors (followers/following/both) with optional email enrichment, username ext...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, agents/openai.yaml, references/actor-contracts.md, references/troubleshooting.md, requirements.txt

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.3

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Overview

This skill runs a reliable actor-based pipeline for Twitter/X lead collection using Apify. It extracts a username from an X/Twitter link, runs a follower/following actor, optionally runs an email actor, and returns normalized rows for outreach workflows. Use this skill when a user asks to: collect followers/following from X via Apify actors enrich collected usernames with emails convert profile links to actor-ready usernames build JSON/webhook payloads for n8n or API endpoints Default actor IDs in this skill: Followers actor: bIYXeMcKISYGnHhBG Email actor: mSaHt2tt3Z7Fcwf0o

Quick Workflow

Parse input target (https://x.com/..., https://twitter.com/..., or @username). Build follower actor payload using collectType and limit. Run follower actor and normalize usernames. If enrichment is enabled, run email actor and merge results. Return final rows + summary metrics.

Execution Rules

Prefer script execution for reliability: use scripts/apify_twitter_actors.py. Keep actor IDs configurable, but default to the IDs above. Always validate collectType (followers, following, both) and positive limit. If email enrichment is disabled, skip email actor entirely. Never hardcode the Apify token in outputs. Use env APIFY_TOKEN or explicit CLI argument.

Authentication (Apify token)

Users can provide the Apify API token in two supported ways.

Option A: Environment variable (recommended)

export APIFY_TOKEN='apify_api_xxx' python3 scripts/apify_twitter_actors.py run-pipeline \ --target 'https://x.com/elonmusk' \ --collect-type followers \ --limit 1000 \ --include-emails

Option B: CLI argument

python3 scripts/apify_twitter_actors.py run-pipeline \ --apify-token 'apify_api_xxx' \ --target 'https://x.com/elonmusk' \ --collect-type followers \ --limit 1000 \ --include-emails If both are provided, --apify-token is used. If neither is provided, the script returns an explicit authentication error.

Script Usage

Run with Python 3.10+. python3 scripts/apify_twitter_actors.py parse-username --target 'https://x.com/elonmusk' APIFY_TOKEN='apify_api_xxx' \ python3 scripts/apify_twitter_actors.py run-followers \ --target 'https://x.com/elonmusk' \ --collect-type followers \ --limit 1000 APIFY_TOKEN='apify_api_xxx' \ python3 scripts/apify_twitter_actors.py run-pipeline \ --target 'https://x.com/elonmusk' \ --collect-type followers \ --limit 1000 \ --include-emails Quick auth check: APIFY_TOKEN='apify_api_xxx' \ python3 scripts/apify_twitter_actors.py run-followers \ --target 'https://x.com/elonmusk' \ --collect-type followers \ --limit 10 For contracts and payload details, read: references/actor-contracts.md references/troubleshooting.md

Output Contract

The pipeline returns JSON with: targetUsername collectType totalCollected emailsFound rows[] with username, name, email, sourceType, collectedAt Use this output directly in n8n Code/HTTP nodes or export to CSV/Google Sheets.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs1 Config1 Files
  • SKILL.md Primary doc
  • README.md Docs
  • references/actor-contracts.md Docs
  • references/troubleshooting.md Docs
  • agents/openai.yaml Config
  • requirements.txt Files