G-MAP Scraper

API Data Access

Integrate Google Maps data directly into your applications with our robust API.

POST /v1/search
curl -X POST https://api.mapscraper.io/v1/search \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "restaurants in new york", "limit": 10 }'

// Response

{
  "status": "success",
  "data": [
    {
      "name": "Joe's Pizza",
      "rating": 4.8,
      "reviews": 1250,
      "address": "7 Carmine St, New York, NY 10014",
      "phone": "+1 212-366-1182",
      "website": "http://joespizzany.com/"
    },
    ...
  ]
}