desearch-x-search
Search X (Twitter) in real time. Find posts by keyword, user, or hashtag. Get a user's timeline, replies, retweeters, or fetch specific posts by ID or URL. Supports advanced filters like date range, language, engagement thresholds, and media type.
What this skill does
# X (Twitter) Search By Desearch
Real-time X/Twitter search and monitoring. Search posts, track users, get timelines, replies, and retweeters with powerful filtering.
## Setup
1. Get an API key from https://console.desearch.ai
2. Set environment variable: `export DESEARCH_API_KEY='your-key-here'`
## Common Fields
All tweet-returning endpoints share these shapes. Fields marked `*` are always present.
### Tweet
| Field | Type | Description |
|-------|------|-------------|
| `id`* | string | Post ID |
| `text`* | string | Post content |
| `created_at`* | string | ISO 8601 timestamp |
| `url` | string\|null | Direct link: `https://x.com/{username}/status/{id}` |
| `like_count`* | int | Likes |
| `retweet_count`* | int | Retweets |
| `reply_count`* | int | Replies |
| `quote_count`* | int | Quotes |
| `bookmark_count`* | int | Bookmarks |
| `view_count` | int\|null | Views |
| `lang` | string\|null | Language code (e.g. `en`) |
| `is_retweet` | bool\|null | Is a retweet |
| `is_quote_tweet` | bool\|null | Is a quote tweet |
| `conversation_id` | string\|null | Thread ID |
| `in_reply_to_screen_name` | string\|null | Username of post being replied to |
| `in_reply_to_status_id` | string\|null | ID of post being replied to |
| `media` | array\|null | `[{media_url, type}]` — type: `photo`, `video`, `animated_gif` |
| `entities` | object\|null | `{hashtags, symbols, urls, user_mentions}` |
| `quote` | Tweet\|null | Nested quoted tweet |
| `retweet` | Tweet\|null | Original tweet _(timeline endpoint only)_ |
| `user` | User\|null | Post author — see User below |
### User
| Field | Type | Description |
|-------|------|-------------|
| `id`* | string | User ID |
| `username`* | string | @handle (without `@`) |
| `name` | string\|null | Display name |
| `url` | string\|null | Profile URL |
| `description` | string\|null | Bio |
| `followers_count` | int\|null | Followers |
| `followings_count` | int\|null | Following |
| `statuses_count` | int\|null | Total tweets posted |
| `verified` | bool\|null | Legacy verified badge |
| `is_blue_verified` | bool\|null | Twitter Blue subscriber |
| `location` | string\|null | Self-reported location |
| `created_at` | string\|null | Account creation date |
| `profile_image_url` | string\|null | Avatar URL |
## Endpoints
### `x` — Search Posts
Search X posts by keyword, hashtag, or user with engagement filters.
```bash
scripts/desearch.py x "Bittensor TAO" --sort Latest --count 10
scripts/desearch.py x "AI news" --user elonmusk --start-date 2025-01-01
scripts/desearch.py x "crypto" --min-likes 100 --verified --lang en
```
**Options:**
| Option | Description |
|--------|-------------|
| `--sort` | `Top` (default) or `Latest` |
| `--user`, `-u` | Filter to posts by username |
| `--start-date` | Start date UTC (YYYY-MM-DD) |
| `--end-date` | End date UTC (YYYY-MM-DD) |
| `--lang` | Language code (e.g. `en`, `es`) |
| `--verified` | Only verified users |
| `--blue-verified` | Only Twitter Blue users |
| `--is-quote` | Only quote tweets |
| `--is-video` | Only posts with video |
| `--is-image` | Only posts with images |
| `--min-retweets` | Minimum retweet count |
| `--min-replies` | Minimum reply count |
| `--min-likes` | Minimum like count |
| `--count`, `-n` | Results count (default: 20, max: 100) |
**Response:** `Tweet[]`
### `x_post` — Retrieve Post by ID
Fetch a single post by its numeric ID.
```bash
scripts/desearch.py x_post 1892527552029499853
```
**Response:** `Tweet`
### `x_urls` — Fetch Posts by URLs
Retrieve one or more posts by their X URLs.
```bash
scripts/desearch.py x_urls "https://x.com/user/status/123" "https://x.com/user/status/456"
```
**Response:** `Tweet[]`
### `x_user` — Search Posts by User
Search within a specific user's posts for a keyword.
```bash
scripts/desearch.py x_user elonmusk --query "AI" --count 10
```
**Options:**
| Option | Description |
|--------|-------------|
| `--query`, `-q` | Keyword to filter the user's posts |
| `--count`, `-n` | Results count (default: 10, max: 100) |
**Response:** `Tweet[]`
### `x_timeline` — Get User Timeline
Fetch the most recent posts from a user's timeline. Retweets include a `retweet` field with the original post.
```bash
scripts/desearch.py x_timeline elonmusk --count 20
```
**Options:**
| Option | Description |
|--------|-------------|
| `--count`, `-n` | Number of posts (default: 20, max: 100) |
**Response:** `{ user: User, tweets: Tweet[] }`
### `x_retweeters` — Get Retweeters of a Post
List users who retweeted a specific post. Supports cursor-based pagination.
```bash
scripts/desearch.py x_retweeters 1982770537081532854
scripts/desearch.py x_retweeters 1982770537081532854 --cursor "AAAAANextCursorValue=="
```
**Options:**
| Option | Description |
|--------|-------------|
| `--cursor` | Pagination cursor from a previous response |
**Response:** `{ users: User[], next_cursor: string|null }` — `next_cursor` is `null` when no more pages remain.
### `x_replies` — Get User's Replies
Fetch a user's tweets-and-replies timeline. Replies have `in_reply_to_screen_name` and `in_reply_to_status_id` set.
```bash
scripts/desearch.py x_replies elonmusk --count 10
scripts/desearch.py x_replies elonmusk --query "AI" --count 10
```
**Options:**
| Option | Description |
|--------|-------------|
| `--count`, `-n` | Results count (default: 10, max: 100) |
| `--query`, `-q` | Filter keyword |
**Response:** `Tweet[]`
### `x_post_replies` — Get Replies to a Post
Fetch replies to a specific post by ID.
```bash
scripts/desearch.py x_post_replies 1234567890 --count 10
scripts/desearch.py x_post_replies 1234567890 --query "thanks" --count 5
```
**Options:**
| Option | Description |
|--------|-------------|
| `--count`, `-n` | Results count (default: 10, max: 100) |
| `--query`, `-q` | Filter keyword within replies |
**Response:** `Tweet[]`
### Errors
Status 401, Unauthorized (e.g., missing/invalid API key)
```json
{
"detail": "Invalid or missing API key"
}
```
Status 402, Payment Required (e.g., balance depleted)
```json
{
"detail": "Insufficient balance, please add funds to your account to continue using the service."
}
```
## Resources
- [API Reference](https://desearch.ai/docs/api-reference)
- [Desearch Console](https://console.desearch.ai)
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.