| name | polymer-pay-clawapi-x |
| description | 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. |
| endpoints | [{"path":"/x/2/tweets/search/recent","method":"GET","price":"$0.01","description":"Search recent tweets"},{"path":"/x/2/tweets/:id","method":"GET","price":"$0.01","description":"Get tweet by ID"},{"path":"/x/2/users/by/username/:username","method":"GET","price":"$0.01","description":"Get user profile by username"},{"path":"/x/2/users/:id","method":"GET","price":"$0.01","description":"Get user profile by ID"},{"path":"/x/2/users/:id/tweets","method":"GET","price":"$0.01","description":"Get user's recent tweets"},{"path":"/x/2/users/:id/followers","method":"GET","price":"$0.01","description":"Get user's followers"},{"path":"/x/2/users/:id/following","method":"GET","price":"$0.01","description":"Get accounts user follows"},{"path":"/x/2/tweets","method":"POST","price":"$0.05","description":"Post a new tweet (OAuth required)"},{"path":"/x/2/users/:id/following","method":"POST","price":"$0.05","description":"Follow a user (OAuth required)"},{"path":"/x/2/tweets/:id/likes","method":"POST","price":"$0.05","description":"Like a tweet (OAuth required)"},{"path":"/x/2/tweets/:id/retweeted_by","method":"GET","price":"$0.01","description":"Get users who retweeted"}] |
| metadata | {"polymer-pay-skill":{"emoji":"๐ฆ","requires":{"env":["POLYMER_PAY_API_KEY"]},"primaryEnv":"POLYMER_PAY_API_KEY"}} |
| registries | {} |
| provider | clawapis |
ClawAPI X
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.
Authentication
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
Common Operations
Search Tweets
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.
Get User Profile
Fetch a public X/Twitter profile by username with bio and metrics.