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

// Apple App Store documentation

Apple App Store Reviews API Alpha

Apple App Store reviews: title, text, rating, author, date and reviewed version for any app and storefront, newest or most helpful first, with page counts.

GET https://api.litescrape.com/api/apple/app-store/reviews

// from request to code

Integrate Apple App Store Reviews

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

APIApple App Store Reviews
More options 3
Filters
Localization
Pagination

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.

Apple App Store Reviews is available through the Python SDK, TypeScript SDK, and cURL. Choose one of those tabs to use this API.

// request reference

Apple App Store Reviews parameters

Send query parameters with GET /api/apple/app-store/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.

Request

product_id
Product ID

Positive decimal Apple app identifier, up to 20 digits.

Example / input hint: 570060128

Filters

sort
Sort order

mostrecent or mosthelpful. Apple’s Mac storefront always returns newest first.

Example / input hint: mostrecent

Accepted values / omission behavior Default (mostrecent)mostrecentmosthelpful

Localization

country
Country

Two-letter Apple storefront country. UK is accepted as an alias for GB.

Example / input hint: us

Pagination

page
Page

One-based page number, from 1 through 2,147,483,647. Exhausted pages return an empty review list.

Example / input hint: 1

// response

Work with the complete JSON response

Response groups include reviews, search_information, litescrape_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 Apple App Store APIs