Explore

Find agent skills by outcome

124,846 skills indexed with the new KISS metadata standard.

Showing 24 of 124,846Categories: Productivity, Coding & Debugging, Data, General
General
PromptBeginner5 minmarkdown

- **Follow/DM endpoints need numeric user ID

not username.** Look up the user first via `GET /x/users/${username}`

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Scoped access**: The `xquik` tool can only call Xquik REST API endpoints. It cannot access the agent's filesystem

environment variables

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Same trust boundary**: The MCP server is a thin protocol adapter over the REST API. Trusting it is equivalent to trusting `xquik.com/api/v1` — same origin

same TLS certificate

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **No code execution**: The MCP server does **not** execute arbitrary code

JavaScript

0
Coding & Debugging
PromptBeginner5 minmarkdown

If building a webhook handler

read [references/webhooks.md](references/webhooks.md) for signature verification code (Node.js

0
General
PromptBeginner5 minmarkdown

HMAC-SHA256 signed event delivery to your HTTPS endpoint. Event types: `tweet.new`

`tweet.quote`

0
Coding & Debugging
PromptBeginner5 minmarkdown

| `xquik` | Send structured API requests (122 endpoints

12 categories) | Varies |

0
Productivity
PromptBeginner5 minmarkdown

`POST /draws` with `tweetUrl` (required) + optional filters. If creating a draw

read [references/draws.md](references/draws.md) for the full filter list and workflow.

0
General
PromptBeginner5 minmarkdown

If running an extraction

read [references/extractions.md](references/extractions.md) for tool types

0
General
PromptBeginner5 minmarkdown

Run auditable draws from tweet replies with filters (retweet required

follow check

0
Data
PromptBeginner5 minmarkdown

Bulk data collection jobs. Always estimate first (`POST /extractions/estimate`)

then create (`POST /extractions`)

0
Productivity
PromptBeginner5 minmarkdown

If implementing retry logic or cursor pagination

read [references/workflows.md](references/workflows.md).

0
Coding & Debugging
PromptBeginner5 minmarkdown

| 5xx | `internal_error`

`x_api_unavailable` | Retry with backoff |

0
Coding & Debugging
PromptBeginner5 minmarkdown

| 429 | `x_api_rate_limited` | Retry with backoff

respect `Retry-After` |

0
General
PromptBeginner5 minmarkdown

| 409 | `monitor_already_exists`

`conflict` | Already exists |

0
General
PromptBeginner5 minmarkdown

| 404 | `not_found`

`user_not_found`

0
General
PromptBeginner5 minmarkdown

| 402 | `no_subscription`

`insufficient_credits`

0
General
PromptBeginner5 minmarkdown

| 400 | `invalid_input`

`invalid_id`

0
General
PromptBeginner5 minmarkdown

| 403 | `monitor_limit_reached`

`account_needs_reauth` | Delete resource or re-authenticate |

0
General
PromptBeginner5 minmarkdown

└─ Tweet search (bulk

up to 1K) → tweet_search_extractor

0
Coding & Debugging
PromptBeginner5 minmarkdown

const headers = { x-api-key: xq_YOUR_KEY_HERE

Content-Type: application/json };

0
Coding & Debugging
PromptBeginner5 minmarkdown

All errors return `{ error: error_code }`. Retry only `429` and `5xx` (max 3 retries

exponential backoff). Never retry other `4xx`.

0
Coding & Debugging
PromptBeginner5 minmarkdown

For full pricing breakdown

comparison vs official X API

0
General
PromptBeginner5 minmarkdown

├─ Trending news (7 sources

free) → GET /radar

0