skills/polymer-pay-clawapi-x/SKILL.md
USE THIS SKILL WHEN: the user wants to access X/Twitter API data including tweets, users, timelines, search, communities, and direct messages through ClawAPIs. Provides pay-per-use X/Twitter data via x402 through the Polymer Pay proxy.
npx skillsauth add polymerdao/pay-apis polymer-pay-clawapi-xInstall 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.
Access X/Twitter data through ClawAPIs — search tweets, lookup users, browse timelines, explore communities, and manage interactions. Each request is paid individually through the Polymer Pay proxy with no X API key or developer account required.
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/clawapis.com
Search recent tweets with keywords, phrases, hashtags, and filters.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/clawapis.com/x/2/tweets/search/recent?query=bitcoin&lang=en&max_results=10",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: Array of tweet objects with text, author info, engagement metrics (likes, retweets, replies), and timestamps.
Fetch a public X/Twitter profile by username with bio and metrics.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/clawapis.com/x/2/users/by/username/elonmusk?user.fields=description,public_metrics",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: JSON object with display name, username, bio, follower count, following count, tweet count, and profile image URL.
Retrieve a single tweet by ID with full content and engagement data.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/clawapis.com/x/2/tweets/123456789",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: JSON object with tweet text, author details, engagement metrics (likes, retweets, replies, views), timestamp, and media attachments.
Fetch recent tweets from a specific user's timeline.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/clawapis.com/x/2/users/123456789/tweets?max_results=10",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: Array of recent tweets with text, engagement metrics, and timestamps. Use pagination_token to fetch older tweets.
Get a list of users who follow a specific account.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/clawapis.com/x/2/users/123456789/followers?max_results=100",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: Array of user objects with profile data and pagination token for more results.
Post a new tweet. Requires OAuth2 authentication via X-Session-Id or X-User-Token header.
Pricing: $0.05
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/clawapis.com/x/2/tweets",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}",
"X-Session-Id": "YOUR_OAUTH_SESSION_ID"
},
"body": {
"text": "Hello from my agent!"
}
}
Response: Posted tweet object with ID and text.
The /x/2/tweets/search/recent endpoint supports these query parameters:
| Parameter | Description |
|-----------------|--------------------------------------------------|
| query | Search query (keywords, phrases, operators) |
| max_results | Number of tweets to return (10-100) |
| start_time | Start date (ISO 8601) |
| end_time | End date (ISO 8601) |
| tweet.fields | Fields to include (created_at,author_id,etc) |
| user.fields | User fields to include (public_metrics,etc) |
| next_token | Pagination token for next page |
Search Operators:
from:username — Tweets from specific userto:username — Tweets mentioning specific user#hashtag — Filter by hashtag"exact phrase" — Exact phrase match-keyword — Exclude keywordfrom:, #hashtag, "phrases" for precise resultstweet.fields and user.fields to get only the data you needdevelopment
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.