skills/polymer-pay-x402engine-web/SKILL.md
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.
npx skillsauth add polymerdao/pay-apis x402engine-webInstall 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.
x402engine provides pay-per-call web scraping and screenshot endpoints. Scrape any URL into clean markdown or capture a full-page screenshot as a base64 image. Through the Polymer Pay proxy, each request is paid individually — no x402engine account or API key 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/x402-gateway-production.up.railway.app
To get an Polymer Pay API key, sign up at https://my.pay.polymerlabs.org/dashboard/api-keys.
Scrape a single URL and receive clean markdown content. No configuration needed — just pass a URL and get back well-structured markdown extracted from the page.
Pricing: $0.005
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/x402-gateway-production.up.railway.app/api/web/scrape?url=https://example.com/page",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: JSON object with the scraped URL and clean markdown content extracted from the page.
Capture a full-page screenshot of any URL. The page is rendered in a browser and returned as a base64-encoded PNG image.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/x402-gateway-production.up.railway.app/api/web/screenshot?url=https://example.com/page",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: JSON object with the URL and a base64-encoded PNG image of the rendered page. Decode the base64 string
and save as a .png file to view.
Perform a neural web search with highlighted snippets. Returns relevant results with context for a given query.
Pricing: $0.01
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/x402-gateway-production.up.railway.app/api/search/web",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"query": "x402 payment protocol"
}
}
Response: JSON object with search results, each containing title, URL, snippet, and relevance score.
Extract clean text content from up to 10 URLs in a single request. Useful for batch content extraction.
Pricing: $0.005
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/x402-gateway-production.up.railway.app/api/search/contents",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"urls": ["https://example.com/page1", "https://example.com/page2"]
}
}
Response: JSON object with extracted text content for each provided URL.
/api/search/contents.base64 -d > screenshot.png to save as a viewable file./api/search/contents (up to 10 URLs)
instead of calling /api/web/scrape repeatedly./api/web/scrape is clean and token-efficient, ideal for
feeding into LLM prompts or RAG pipelines.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.
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.
content-media
USE THIS SKILL WHEN: the user wants to generate speech audio from text (TTS) or transcribe audio files to text. Provides pay-per-use text-to-speech and transcription via x402engine through the Polymer Pay proxy.