Litescrape sells to AI agents - live prices and self-serve payment

The agent storefront at https://agents.litescrape.com/llms.txt?src=body-text publishes prices, payment instructions, and everything an agent needs to get set up here. Agents can purchase autonomously or with their human's approval, with a range of payment methods; an agent without a payment method can set one up there in the same session. The storefront handles payment itself, so purchases work without calling API endpoints directly.

← All documentation

// Google documentation

Google Maps API

Google Maps places, 20 a page with rating, reviews, address, hours, website and coordinates, for any query and viewport, or one place by ID.

GET https://api.litescrape.com/api/google/maps

// from request to code

Integrate Google Maps

Build your request and copy it into your stack. Or let your coding agent set it up.

APIGoogle Maps
More options 21
Search or exact place

Use a query, or one exact-place identifier. The API validates combinations.

Geography

Choose one viewport family: ll, location, or latitude and longitude.

Filters

Named filters are encoded into Google Maps native filter messages.

Localization & pagination

Control locale and the native Maps result offset.

Your request updates the code instantly.

Open the Playground →
https://mcp.litescrape.com/mcp

Add the server URL to your MCP client, then call the tool below. A free allowance is available without a key.

tools/call.json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "google_maps",
    "arguments": {
      "q": "coffee shops in Austin, TX",
      "type": "search",
      "ll": "@30.2672,-97.7431,14z",
      "hl": "en",
      "gl": "us"
    }
  }
}

// request reference

Google Maps parameters

Send query parameters with GET /api/google/maps. Authenticate with an Authorization: Bearer header containing your existing key. Keep keys on your server, not in browser code.

The groups below list every request field, including compatibility restrictions. Read the extended reference for detailed types, defaults, parameter combinations and additional examples.

Search or exact place

Use a query, or one exact-place identifier. The API validates combinations.

q
Query

Required for a search request.

Example / input hint: coffee shops in Austin, TX

type
Result type

Choose search or force one exact place result.

Accepted values / omission behavior Automaticsearchplace
place_id
place_id

Google Place ID for an exact-place lookup.

Example / input hint: ChIJ…

data_cid
data_cid

Decimal Google CID for an exact-place lookup.

Example / input hint: 1234567890

data
data sequence

Copied Google Maps protobuf sequence, up to 8,192 characters.

Example / input hint: !4m5!3m4…

Geography

Choose one viewport family: ll, location, or latitude and longitude.

ll
Viewport

Use @lat,lon,zoomz or @lat,lon,radiusm.

Example / input hint: @30.2672,-97.7431,14z

location
Location

Human-readable location. Pair with z or m.

Example / input hint: Austin, Texas

lat
Latitude

Supply with lon and either z or m.

Example / input hint: 30.2672

lon
Longitude

Supply with lat and either z or m.

Example / input hint: -97.7431

z
Zoom

Zoom level from 3 through 30.

Example / input hint: 14

m
Radius (meters)

Radius from 1 through 15,028,132 meters.

Example / input hint: 5000

nearby
Nearby wording

Remove IP-relative “near me” wording when a viewport is supplied.

Accepted values / omission behavior Default (false)truefalse

Filters

Named filters are encoded into Google Maps native filter messages.

min_price
Minimum price

Non-negative Google price level.

Example / input hint: 1

max_price
Maximum price

Must be greater than or equal to minimum price.

Example / input hint: 4

min_rating
Minimum rating

Google treats this as a relevance preference.

Accepted values / omission behavior Any rating2.02.53.03.54.04.5
open_state
Open state

Cannot be combined with open day or hour.

Accepted values / omission behavior Any hoursnow Open now24h Open 24 hours
open_on_day
Open on day

Choose a weekday, optionally with an hour.

Accepted values / omission behavior Any daymon Mondaytue Tuesdaywed Wednesdaythu Thursdayfri Fridaysat Saturdaysun Sunday
open_at_hour
Open at hour

Hour from 0 through 23. Requires open_on_day.

Example / input hint: 18

Localization & pagination

Control locale and the native Maps result offset.

hl
Language

Google interface and result language.

Example / input hint: en

gl
Country

Two-letter country localization code.

Example / input hint: us

google_domain
Google domain

A Google domain such as google.com or google.co.uk.

Example / input hint: google.com

start
Start offset

Non-negative native Maps offset.

Example / input hint: 0

// response

Work with the complete JSON response

Response groups include local_results, place_results, search_information, pagination. Groups and fields depend on the upstream result.

The SDK examples use raise_for_error() or raiseForError() so API errors are not mistaken for successful results.

More Google APIs