skills/polymer-pay-stableenrich-google-maps/SKILL.md
USE THIS SKILL WHEN: the user wants to search for businesses and places by text query or location, get place details, ratings, reviews, and contact information via StableEnrich.
npx skillsauth add polymerdao/pay-apis polymer-pay-stableenrich-google-mapsInstall 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.
Google Maps API provides place search, nearby search, and place details through the Polymer Pay proxy via StableEnrich. Search for businesses, restaurants, or services by location, get ratings, reviews, contact info, and opening hours.
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/stableenrich.dev
Search for places using a text query with full field details (includes ratings, reviews, contact info, and atmosphere data).
Pricing: $0.08
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/stableenrich.dev/api/google-maps/text-search/full",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"textQuery": "coffee shops in San Francisco",
"maxResultCount": 5
}
}
Response: Array of place objects with name, address, phone, website, rating, review count, opening hours, and Google Maps place ID.
Search for places using a text query with partial field details (basic info only, lower cost).
Pricing: $0.02
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/stableenrich.dev/api/google-maps/text-search/partial",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"textQuery": "coffee shops in San Francisco",
"maxResultCount": 5
}
}
Search for places near a geographic location with full details.
Pricing: $0.08
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/stableenrich.dev/api/google-maps/nearby-search/full",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"locationRestriction": {
"circle": {
"center": { "latitude": 37.7749, "longitude": -122.4194 },
"radius": 1000
}
},
"maxResultCount": 5
}
}
Search for places near a geographic location with partial details.
Pricing: $0.02
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/stableenrich.dev/api/google-maps/nearby-search/partial",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"locationRestriction": {
"circle": {
"center": { "latitude": 37.7749, "longitude": -122.4194 },
"radius": 1000
}
},
"maxResultCount": 5
}
}
Get full details for a specific place by ID.
Pricing: $0.05
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stableenrich.dev/api/google-maps/place-details/full?placeId=ChIJN1t_tDeuEmsRUsoyG83frY4",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Get partial details for a specific place by ID.
Pricing: $0.02
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stableenrich.dev/api/google-maps/place-details/partial?placeId=ChIJN1t_tDeuEmsRUsoyG83frY4",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
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.