merit-systems/x402scan-skills

local-search

Search for places, businesses, and locations using Google Maps APIs via x402. USE FOR: - Finding businesses by name or type - Searching nearby places - Getting detailed place information (address, hours, reviews) - Finding restaurants, stores, services in an area - Getting business ratings and reviews - "find", "search for", "locate", "nearby" - "restaurants near", "hotels in", "stores around" - "business details", "opening hours", "reviews for" - "places in", "what's near", "directions to" Cho…

First seen Jan 29, 2026

Installation

$ npx skills add merit-systems/x402scan-skills --skill local-search

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from merit-systems/x402scan-skills.

npx skills add merit-systems/x402scan-skills

Browse all from merit-systems/x402scan-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 3
Default branch master
Open issues 2
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 7,251 B
  • docs SUMMARY.md 801 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 34 installs

SKILL.md

Local Search with Google Maps

STOP — Read before making any API call. enrichx402.com endpoints are not the same as each provider's native API. All paths use the format https://enrichx402.com/api/{provider}/{action}. You MUST either:
1. Copy exact URLs from the Quick Reference table below, OR
2. Run x402.discoverapiendpoints(url="https://enrichx402.com";) to get the correct paths

Guessing paths will fail with 405 errors (wrong path) or 404 errors (missing /api/ prefix).

Access Google Maps Places API through x402-protected endpoints.

Setup

See [rules/getting-started.md](rules/getting-started.md) for installation and wallet setup.

Quick Reference

Task Endpoint Price Data Included
Text search (basic) https://enrichx402.com/api/google-maps/text-search/partial $0.02 Name, address, rating
Text search (full) https://enrichx402.com/api/google-maps/text-search/full $0.08 + reviews, atmosphere
Nearby search (basic) https://enrichx402.com/api/google-maps/nearby-search/partial $0.02 Name, address, rating
Nearby search (full) https://enrichx402.com/api/google-maps/nearby-search/full $0.08 + reviews, atmosphere
Place details (basic) https://enrichx402.com/api/google-maps/place-details/partial $0.02 Core info
Place details (full) https://enrichx402.com/api/google-maps/place-details/full $0.05 All fields

See [rules/partial-vs-full.md](rules/partial-vs-full.md) for tier selection guidance.

Text Search

Search for places by text query:

x402.fetch(
  url="https://enrichx402.com/api/google-maps/text-search/partial",
  method="POST",
  body={
    "textQuery": "coffee shops in downtown Seattle"
  }
)

Parameters:

  • textQuery - Search query (required)
  • locationBias - Prefer results near a location
  • minRating - Minimum rating filter (1-5)
  • openNow - Only open places
  • maxResultCount - Limit results (default: 20)

Full tier adds: reviews, atmosphere data, photos, price level.

Nearby Search

Search for places near a location:

x402.fetch(
  url="https://enrichx402.com/api/google-maps/nearby-search/partial",
  method="POST",
  body={
    "locationRestriction": {
      "circle": {
        "center": {
          "latitude": 47.6062,
          "longitude": -122.3321
        },
        "radius": 1000
      }
    },
    "includedTypes": ["restaurant", "cafe"]
  }
)

Parameters:

  • locationRestriction - Circle with center (lat/lng) and radius in meters
  • includedTypes - Place types to include
  • excludedTypes - Place types to exclude
  • minRating - Minimum rating
  • openNow - Only open places

Place Details

Get detailed info for a specific place:

x402.fetch(
  url="https://enrichx402.com/api/google-maps/place-details/partial",
  method="POST",
  body={
    "placeId": "ChIJN1t_tDeuEmsRUsoyG83frY4"
  }
)

Input:

  • placeId - Google Place ID (from search results)

Partial returns: Name, address, phone, website, hours, rating, types.

Full returns: + reviews, atmosphere (wheelchair access, pets allowed), photos, price level.

Common Place Types

Use these with includedTypes / excludedTypes:

Food & Drink: restaurant, cafe, bar, bakery, coffee_shop

Lodging: hotel, motel, lodging, guest_house

Shopping: shoppingmall, store, supermarket, clothingstore

Services: bank, atm, gasstation, carrepair, car_wash

Health: hospital, pharmacy, doctor, dentist

Entertainment: movie_theater, museum, park, gym

Workflows

Find Businesses in Area

  1. (Optional) Check balance: x402.getwalletinfo
  2. Discover endpoints (required before first fetch): x402.discoverapiendpoints(url="https://enrichx402.com";)
  3. Text search (partial) to find options
  4. Review results and select top picks
  5. Get full details for selected places
x402.fetch(
  url="https://enrichx402.com/api/google-maps/text-search/partial",
  method="POST",
  body={"textQuery": "Italian restaurants downtown Portland"}
)
x402.fetch(
  url="https://enrichx402.com/api/google-maps/place-details/full",
  method="POST",
  body={"placeId": "ChIJ..."}
)

Nearby Search with Filters

  • Get coordinates for the area
  • Search with location restriction and filters
  • Present sorted results
x402.fetch(
  url="https://enrichx402.com/api/google-maps/nearby-search/partial",
  method="POST",
  body={
    "locationRestriction": {
      "circle": {
        "center": {"latitude": 40.7128, "longitude": -74.0060},
        "radius": 500
      }
    },
    "includedTypes": ["restaurant"],
    "minRating": 4.0,
    "openNow": true
  }
)

Compare Places with Reviews

  • Search to get place IDs
  • Fetch full details for each candidate
  • Compare ratings, reviews, and amenities
x402.fetch(
  url="https://enrichx402.com/api/google-maps/place-details/full",
  method="POST",
  body={"placeId": "place_id_here"}
)

Cost Optimization

Use Partial Tier When:

  • Just need name, address, basic info
  • Browsing/discovering options
  • Initial search before drilling down

Use Full Tier When:

  • Need reviews/ratings details
  • Need atmosphere info (accessibility, etc.)
  • Final decision-making

Efficient Patterns

  1. Search partial, detail full:

- Text search (partial) to find places - Place details (full) for the one you care about

  1. Batch searches:

- Combine filters to reduce calls - Use maxResultCount to limit results

  1. Cache place IDs:

- Place IDs are stable - Re-fetch details only when needed

Response Data

Partial Tier Fields

  • name - Place name
  • formattedAddress - Full address
  • location - Lat/lng coordinates
  • rating - Average rating (1-5)
  • userRatingCount - Number of ratings
  • types - Place type categories
  • businessStatus - OPERATIONAL, CLOSED, etc.
  • regularOpeningHours - Hours of operation
  • nationalPhoneNumber - Phone number
  • websiteUri - Website URL

Full Tier Additional Fields

  • reviews - User reviews with text and ratings
  • priceLevel - $ to $$$$
  • accessibilityOptions - Wheelchair accessible, etc.
  • parkingOptions - Parking availability
  • paymentOptions - Accepted payment methods
  • photos - Photo references