xgo-fetch-tweets

Fetch tweets from XGo API with filtering and de-duplication.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/ginobefun/gino-skills --skill xgo-fetch-tweets
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: xgo-fetch-tweets
Source: https://github.com/ginobefun/gino-skills/tree/main/skills/xgo-fetch-tweets
Command: npx skills add https://github.com/ginobefun/gino-skills --skill xgo-fetch-tweets

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Aggregating relevant Twitter/X content across timelines, recommendations, lists, tags, and bookmarks is time-consuming and easy to miss key signals; this Skill provides a deterministic, filtered, and de-duplicated tweet retrieval workflow so downstream tasks receive complete machine-readable data rather than summaries.

Core Features & Use Cases

  • Authentication via X-API-KEY read from environment and explicit requirement to surface configuration issues to the user.
  • Parallelized multi-query fetching (following pages + recommendation) with explicit sort and pagination, client-side influenceScore filtering, de-duplication by tweet id, and clear truncation warnings when page limits are reached.
  • Outputs full tweet DTO records for downstream quality checks and processing, with helpers to list available languages and follower tags, and robust error handling for success flags, rate limits, and special xgo error codes.
  • Use cases: generate daily digests of top tweets, monitor high-influence conversations, fetch bookmarked tweets for archival, and pull a specific list or tag for curated analysis.

Quick Start

Fetch the top 20 most influential tweets from my following timeline in the last 24 hours using the XGo API.

Frequently Asked Questions about xgo-fetch-tweets

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fetch high-impact tweets from a Twitter timeline using an API?

Fetch high-impact tweets by using the XGo API to retrieve timelines with explicit sort and pagination, then apply client-side influenceScore filtering to isolate trending content. This Skill parallelizes multi-query fetching and de-duplicates tweet IDs for clean downstream data.

Can I retrieve bookmarked tweets and specific Twitter lists for archival analysis?

Yes, you can retrieve bookmarked tweets and specific Twitter lists by querying the XGo API. The workflow outputs full tweet DTO records, allowing you to pull curated tags or bookmarks for complete machine-readable archival without missing key signals.

What is the best way to de-duplicate tweets and handle rate limits when fetching Twitter timelines?

The best way to de-duplicate tweets and handle rate limits is via a deterministic workflow that de-duplicates by tweet ID and includes robust error handling for success flags and rate limits. It also issues clear truncation warnings when page limits are reached.

Does fetching Twitter timelines with this method require special authentication?

Yes, fetching Twitter timelines requires X-API-KEY authentication read from your environment. The workflow explicitly surfaces configuration issues if the key is missing, ensuring secure access to retrieve recommendation pages and following timelines.

How do I generate a daily digest of top tweets from my following timeline?

Generate a daily digest of top tweets by fetching the following timeline via the XGo API with explicit pagination, then filtering by influenceScore. The Skill outputs full tweet records so downstream tasks receive complete data rather than summaries for digest generation.

Are there limitations when fetching multiple Twitter timeline pages simultaneously?

When fetching multiple Twitter timeline pages simultaneously, limitations include hitting page limits which trigger truncation warnings, and encountering rate limits or special XGo error codes. The workflow handles these constraints with robust error checking and de-duplication by tweet ID.