GET /geolocation/details

to have more information about the fields, please refer to the Google Maps API documentation: https://developers.google.com/maps/documentation/places/web-service/details

Headers

  • X-Popsell-Domain string Required

    The domain of the user

Query parameters

  • place_id string Required

    The place_id of the location

  • fields string

    The fields to return

Responses

  • 200 application/json

    get the details for the place_id

    Hide response attributes Show response attributes object
    • details object
    • status string
  • 403

    Forbidden - You don't have permission to access this route

GET /geolocation/details
curl \
 --request GET 'https://domain.tld/api/v2/geolocation/details?place_id=ChIJd8BlQ2Bx5kcRjQwN8zG3pzQ' \
 --header "X-Popsell-Domain: example.com"
Response examples (200)
{
  "details": {},
  "status": "OK"
}