ScrapeField

ScrapeField vs the Google Places API

Google’s Places API is the official way to use Google Maps data, and the right one inside an app your users see. Its place search costs $32.00 per 1,000 calls; ours costs $2.34 → $1.20. Here is where each fits.

ScrapeFieldPlaces API (New)
Search for places, per 1,000$2.34 → $1.20 (3 credits)$32.00 (Text Search Pro), after 5,000 free a month
One place in full, per 1,000$2.34 → $1.20 (3 credits)$17.00 (Place Details Pro); $20.00 with Enterprise fields
Photos, per 1,000$1.56 → $0.80 (2 credits)$7.00
Reviews per placeA page at a time, from GET /v1/google-maps/reviewsAt most 5, inside Place Details
Star breakdown (how many 1s, 2s…)In the responseNot in the API
Field namesThe Places API’s ownThe Places API’s own
Official, SLA-backedNoYes

Checked 22 September 2026 against each vendor’s own pricing page. Rechecked quarterly — tell us if something here is out of date and we will fix it.

Questions

Why is the difference so large?

Google prices the Places API for apps that show a few places to each user, not for building lists of thousands of businesses. For a list, the per-call price is what you pay; for an app, the free monthly usage and the terms may matter more than the price.

Is the data the same?

The field names are: a place from us is named the way the Places API names it, so moving code between the two is mostly a change of URL. What differs is what comes back. We page through a place’s reviews and return the star breakdown; the Places API returns at most five reviews and no breakdown.

Try it before you decide

Every endpoint has a playground that runs against the live API with no key and no account — real routing, real validation, real errors. If the response shape does not fit your code, you will know in about a minute.