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 Reviews API

Google Maps reviews, up to 100 a call with rating, text, author, date, likes, images and owner replies, sorted by relevance, date or rating.

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

// from request to code

Integrate Google Maps Reviews

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

APIGoogle Maps Reviews
More options 9
Place

Supply exactly one Google place identifier.

Sort & filter

Filter by either a review topic or a free-text query.

Pagination

Continue from an opaque token returned by Litescrape.

Localization & enrichment

Control locale and optional source metadata.

Your request updates the code instantly.

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

Add the server URL to your MCP client with an Authorization: Bearer header containing your API key, then call the tool below.

tools/call.json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "google_reviews",
    "arguments": {
      "place_id": "ChIJT2h1HKZZwokR0kgzEtsa03k",
      "sort_by": "qualityScore",
      "hl": "en",
      "gl": "us"
    }
  }
}

// request reference

Google Maps Reviews parameters

Send query parameters with GET /api/google/reviews. 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.

Place

Supply exactly one Google place identifier.

place_id
place_id

Google Place ID.

Example / input hint: ChIJT2h1HKZZwokR0kgzEtsa03k

data_id
data_id

Hexadecimal Google Maps feature ID.

Example / input hint: 0x123:0x456

Sort & filter

Filter by either a review topic or a free-text query.

sort_by
Sort order

Choose Google’s review ordering.

Accepted values / omission behavior Most relevant (default)qualityScore Most relevantnewestFirst NewestratingHigh Highest ratingratingLow Lowest rating
topic_id
Topic ID

Mutually exclusive with query.

Example / input hint: /m/… or fused topic ID

query
Review query

Free-text review filter. Mutually exclusive with topic_id.

Example / input hint: parking

num
Number of reviews

1 through 100 initially; filtered and continuation requests accept up to 20.

Example / input hint: 10

Pagination

Continue from an opaque token returned by Litescrape.

next_page_token
Next page token

Preserves request-bound Reviews session context.

Example / input hint: Opaque token from the previous response

Localization & enrichment

Control locale and optional source metadata.

hl
Language

Google review language.

Example / input hint: en

gl
Country

Lowercase country localization.

Example / input hint: us

source_metadata
Source metadata

Include provider icon and rating-scale enrichment.

Accepted values / omission behavior Default (false)truefalse

// response

Work with the complete JSON response

Response groups include reviews, place_info, topics, 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