AgentStack
SKILL verified MIT Self-run

Xtwitter Scraper

skill-managedcode-dotnet-skills-xtwitter-scraper · by managedcode

Use XTwitterScraper when a .NET application needs typed access to Xquik's X automation REST API for tweet search, user lookup, posting workflows, extraction jobs, monitors, webhooks, or giveaway draws. USE FOR: integrating the XTwitterScraper NuGet package; reviewing Xquik API client usage; modeling API-key configuration, pagination, binary exports, raw responses, retries, and webhook/event flows…

No reviews yet
0 installs
5 views
0.0% view→install

Install

$ agentstack add skill-managedcode-dotnet-skills-xtwitter-scraper

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Xtwitter Scraper? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

XTwitterScraper

Trigger On

  • adding the XTwitterScraper NuGet package to a .NET application
  • searching tweets, reading tweet/user data, running extraction jobs, or monitoring X accounts through Xquik from .NET
  • posting tweets, replies, likes, reposts, follows, or DMs through typed SDK methods
  • exporting extraction results, handling raw responses, retries, rate limits, or API errors
  • wiring Xquik webhook events into ASP.NET Core, workers, queues, or background processing

Workflow

  1. Confirm the project actually needs Xquik API access from .NET. If it only needs prompt guidance, use a generic agent or API-design skill instead.
  2. Install the NuGet package:

``bash dotnet add package XTwitterScraper ``

  1. Configure credentials through environment or secret storage. Prefer X_TWITTER_SCRAPER_API_KEY; keep X_TWITTER_SCRAPER_BASE_URL at its default unless a test fixture intentionally overrides it.
  2. Create XTwitterScraperClient at the composition boundary and inject it or a narrow wrapper into application services. Do not scatter client construction across handlers.
  3. Build typed Params objects for SDK calls instead of manually concatenating query strings.
  4. Treat paginated responses, extraction jobs, binary exports, and webhook events as different flow types. Do not force them through one generic helper.
  5. Preserve typed exceptions. Catch XTwitterScraperRateLimitException, authorization errors, and 5xx errors only where the application can retry, defer, or show a useful state.
  6. Validate with unit tests around your wrapper and integration tests with configured API credentials only when the environment explicitly provides them.

Architecture

flowchart LR
  A["ASP.NET Core or worker service"] --> B["Application wrapper"]
  B --> C["XTwitterScraperClient"]
  C --> D["Xquik REST API"]
  D --> E["Typed response models"]
  D --> F["Webhook events"]
  D --> G["Binary exports"]

Core Knowledge

  • XTwitterScraperClient reads X_TWITTER_SCRAPER_API_KEY, X_TWITTER_SCRAPER_BEARER_TOKEN, and X_TWITTER_SCRAPER_BASE_URL from the environment, and can also be configured manually.
  • The default API base URL is https://xquik.com/api/v1.
  • Common read paths include tweet search, tweet detail, user search, user detail, profile tweets, followers, trends, monitors, and extraction jobs.
  • Common write paths include tweet creation, replies, likes, reposts, follows, DMs, media upload, and giveaway draw actions.
  • Request methods use typed Params classes, such as TweetSearchParams, and return typed response models such as paginated tweets.
  • Binary export methods return HttpResponse; copy the stream deliberately instead of assuming JSON deserialization.
  • Raw response access is available through WithRawResponse when code needs status, headers, or raw body inspection.
  • WithOptions can override client options for one call without mutating the original client or service.
  • The SDK retries selected transient failures by default. Do not add broad outer retry loops without checking idempotency and endpoint semantics.

Decision Cheatsheet

| If you need | Default approach | Why | |---|---|---| | Tweet search or user lookup | Use typed SDK methods and Params classes | Keeps request shape explicit | | Application-wide client usage | Register one wrapper around XTwitterScraperClient | Keeps auth and options centralized | | One-off option override | Use WithOptions | Avoids mutating shared client state | | Headers or status inspection | Use WithRawResponse | Keeps normal typed flow clean | | Extraction result download | Treat response as a stream | Avoids accidental JSON assumptions | | Webhook handling | Map events to application commands or queue messages | Keeps delivery separate from business processing |

Common Failure Modes

  • Committing API keys, sample tokens, or local environment files.
  • Building URLs by hand instead of using SDK params.
  • Treating every response as JSON when export endpoints may return binary data.
  • Hiding API failures behind generic Exception catches.
  • Retrying write or workflow actions without checking whether the operation is safe to replay.
  • Mixing webhook verification, persistence, and business processing in one oversized controller.
  • Overriding BaseUrl globally in production code when only tests need a custom endpoint.

Deliver

  • a narrow package integration with XTwitterScraper
  • centralized credential and client configuration
  • typed request and response usage for the specific Xquik endpoint family
  • explicit pagination, export, raw-response, retry, and webhook handling where needed
  • tests that cover wrapper behavior without requiring live credentials by default

Validate

  • dotnet restore resolves XTwitterScraper
  • dotnet build succeeds without leaking credential values into source or logs
  • unit tests cover the application wrapper around the SDK
  • live integration tests are skipped unless the API key environment is explicitly configured
  • webhook handlers validate signatures or event authenticity before processing
  • retries and background jobs are scoped to operations that are safe for the application to replay

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.