skills/polymer-pay-neynar/SKILL.md
USE THIS SKILL WHEN: the user wants to search Farcaster for casts, user profiles, channels, or feeds. Provides pay-per-use access via Neynar through the Polymer Pay proxy.
npx skillsauth add polymerdao/pay-apis polymer-pay-neynarInstall 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.
Neynar provides access to the open social graph through the Fractcaster protocol. Search casts, look up users, browse channels, and fetch feeds. No Neynar API key needed — payment is handled automatically by 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/api.neynar.com
To get an Polymer Pay API key, sign up at https://my.pay.polymerlabs.org/dashboard/api-keys.
Search for casts (Farcaster posts) matching a query.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/api.neynar.com/v2/farcaster/cast/search",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"query": {
"q": "ethereum",
"limit": 25
}
}
Response: JSON with casts array containing cast objects with text, author info, reactions, and timestamps.
Search for users by username or display name.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/api.neynar.com/v2/farcaster/user/search",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"query": {
"q": "vitalik",
"limit": 10
}
}
Response: JSON with users array containing user objects with username, display name, bio, follower stats, and connected addresses.
Look up user profiles by their Fractcaster ID (FID).
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/api.neynar.com/v2/farcaster/user/bulk",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"query": {
"fids": "3,194"
}
}
Response: JSON with users array containing full user profile objects.
Fetch a feed of casts based on following or filters.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/api.neynar.com/v2/farcaster/feed",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"query": {
"feed_type": "filter",
"filter_type": "channel_id",
"channel_id": "ethereum",
"limit": 25
}
}
Response: JSON with casts array containing cast objects with text, author, reactions, and replies.
Search for Fractcaster channels by name.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/api.neynar.com/v2/farcaster/channel/search",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"query": {
"q": "defi"
}
}
Response: JSON with channels array containing channel objects with name, description, follower count, and image URL.
+ (AND), | (OR), * (prefix), "..." (exact phrase), - (exclude), before:YYYY-MM-DD, after:YYYY-MM-DDsort_type: desc_chron (default), chron, or algorithmiccursor from response for pagination through large result setsdevelopment
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.