Get scrape results (lead rows)
get_resultsRetrieve scraped Google Maps business leads as paginated JSON pages. Filter by fields or email-only, and page with offset until all rows are read.
Instructions
Read a scrape's rows as compact JSON, one page at a time. Works while the scrape is running (partial rows) and after it is done. Long pages are cut short to fit one tool response (trimmed: true); keep paging from nextOffset. Each row is one business with only its populated fields, e.g. name, category, phone, email, website, address, city, state, postal_code, country_code, rating, reviews, business_status, company_facebook/instagram/linkedin/x/youtube, location_link, place_id and _status (found -> extracted -> enriched). Page with offset/nextOffset until hasMore is false. For a spreadsheet of every row use download_export instead of paging through thousands of rows.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Rows per page (1-1000, default 50). | |
| detail | No | compact (default) drops long or duplicate columns (coordinates, opening hours, internal ids, links to order/reserve) and shortens very long text; full returns every populated column. | compact |
| fields | No | Only return these columns, e.g. ["name","email","phone","website"]. Overrides detail. Available columns include query, name, category, phone, email, website, domain, company_facebook, company_instagram, company_x, company_youtube, company_linkedin, address, street, city, state, state_code, postal_code, country, country_code, latitude, longitude, plus_code, rating, reviews, business_status, price_range, service_options, working_hours, order_links, reservation_links, menu_link, location_link, place_id, google_id, cid, kgmid, _status. | |
| offset | No | Rows to skip (default 0). Use nextOffset from the previous page. | |
| scrapeId | Yes | The scrape id returned by start_scrape or list_scrapes (a UUID). | |
| withEmailOnly | No | Only return rows that have an email address. Filters within the requested page. |