Project HermesHermes Docs
API ReferenceGoogle Maps Scraper

Get Run

Check a Google Maps scraper run status

Get Run

Get the current status and counters for a scraper run.

  • id (integer) required — The run ID returned by create run.
curl -H "Authorization: Bearer hermes_your_api_key" \
  https://api.hermes.camie.ai/v1/google-maps-scraper/runs/5

Response

{
  "success": true,
  "message": "Google Maps scraper run",
  "data": {
    "id": 5,
    "leadListId": 40,
    "provider": "maps_web_scraper",
    "status": "completed",
    "statusMessage": "Google Maps scraper run completed with 2 items",
    "searchStrings": ["coffee shop"],
    "locationQuery": "Lagos Nigeria",
    "countryCode": "ng",
    "language": "en",
    "maxCrawledPlacesPerSearch": 2,
    "scrapeContacts": false,
    "verifyEmails": false,
    "totalQueries": 1,
    "processedQueries": 1,
    "totalItems": 2,
    "savedItems": 2,
    "enrichedItems": 0,
    "importedLeads": 0,
    "failedItems": 0,
    "startedAt": "2026-06-13T03:50:01.000Z",
    "completedAt": "2026-06-13T03:50:32.000Z",
    "createdAt": "2026-06-13T03:50:00.000Z",
    "updatedAt": "2026-06-13T03:50:32.000Z"
  }
}

Poll this endpoint every 5-15 seconds while status is queued, running, or enriching.

On this page