skills/polymer-pay-twit/SKILL.md
USE THIS SKILL WHEN: the user wants to search X/Twitter, look up a Twitter user profile, read a specific tweet, browse a user's timeline, explore communities, or check followers/following. Provides pay-per-use X/Twitter data through the Polymer Pay proxy.
npx skillsauth add polymerdao/pay-apis polymer-pay-twitInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Twit's x402 API provides pay-per-use access to X/Twitter data — search tweets with advanced filters, look up user profiles, read individual tweets, browse timelines, explore communities, and check followers/following. No X/Twitter API key or developer account required — each request is paid individually through the Polymer Pay proxy.
All requests route through the Polymer Pay proxy. Include your Polymer Pay API key in every request:
{
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Base URL: https://pay.polymerlabs.org/proxy/https/x402.twit.sh
Full-archive tweet search with advanced filters. Supports keywords, phrases, hashtags, user filters, engagement minimums, and date ranges.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/x402.twit.sh/tweets/search?words=bitcoin&since=2026-03-01",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: Array of tweet objects matching the query, each with tweet text, author info, engagement metrics (likes,
retweets, replies), and timestamps. Includes next_token for pagination.
Fetch a public X/Twitter profile by username, including bio, follower and following counts, and avatar.
Pricing: $0.005
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/x402.twit.sh/users/by/username?username=elonmusk",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: JSON object with the user's display name, username, bio, follower count, following count, tweet count, and profile image URL.
Retrieve a single tweet by its ID, including full text, author info, and engagement metrics.
Pricing: $0.0025
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/x402.twit.sh/tweets/by/id?id=1234567890",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: JSON object with the tweet's full text, author details, engagement metrics (likes, retweets, replies, views), timestamp, and any media attachments.
Fetch recent tweets from a specific user's timeline by username.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/x402.twit.sh/tweets/user?username=vitalikbuterin",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: Array of the user's recent tweets, each with tweet text, engagement metrics, and timestamps. Use
next_token from the response to paginate through additional results.
Retrieve replies to a specific tweet by its ID.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/x402.twit.sh/tweets/replies?id=1234567890",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: Array of reply tweets, each with tweet text, author info, engagement metrics, and timestamps. Use
next_token to paginate.
Get members of a Twitter list by list ID.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/x402.twit.sh/lists/members?id=1234567890",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: Array of list members with their roles (Admin, Moderator, Member). Paginated.
Get tweets from a Twitter list by list ID.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/x402.twit.sh/lists/tweets?id=1234567890",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: Array of tweets from list members. Paginated.
The /tweets/search endpoint supports these query parameters:
| Parameter | Description |
|---------------|--------------------------------------------------|
| words | Match any of these words |
| phrase | Exact phrase match |
| anyWords | Match any of a set of words (OR logic) |
| noneWords | Exclude tweets containing these words |
| hashtags | Filter by hashtags |
| from | Tweets from a specific user |
| to | Tweets directed at a specific user |
| mentioning | Tweets mentioning a specific user |
| minReplies | Minimum number of replies |
| minLikes | Minimum number of likes |
| minReposts | Minimum number of reposts |
| since | Start date (YYYY-MM-DD) |
| until | End date (YYYY-MM-DD) |
| next_token | Pagination token from previous response |
words, phrase, from, minLikes, and date ranges for precise results
instead of broad keyword searches.next_token when more results are available. Pass it as a
query parameter to fetch the next page.GET /users or GET /tweets with comma-
separated IDs instead of making individual requests.minLikes, minReplies, and minReposts to surface high-signal tweets and filter
out noise.development
USE THIS SKILL WHEN: the user wants to use Z.ai's GLM models for chat, translation, image generation, video generation, or web search. Z.ai provides GLM-4.5 and GLM-4.6 with advanced reasoning and agentic capabilities.
development
USE THIS SKILL WHEN: the user wants a quick single-page scrape to markdown or a webpage screenshot. Provides lightweight web scraping and screenshots via x402engine through the Polymer Pay proxy.
data-ai
USE THIS SKILL WHEN: the user wants to generate AI images with FLUX models or create text-in-image with Ideogram. Provides pay-per-use image generation via x402engine through the Polymer Pay proxy.
data-ai
USE THIS SKILL WHEN: the user wants wallet balances, transactions, PnL, ENS resolution, token prices, or transaction simulation. Provides pay-per-use blockchain operations via x402engine through the Polymer Pay proxy.