POST
/
actions
/
googlemaps-extract-places
/
run
/
live
curl --request POST \
  --url https://api.captaindata.com/v4/actions/googlemaps-extract-places/run/live \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "parameters": {},
  "input": {
    "google_maps_place_url": "<string>"
  }
}'
{
  "address": "<string>",
  "website": "<string>",
  "place_name": "<string>",
  "google_maps_place_url": "<string>",
  "rating": "<string>",
  "number_reviews": 123,
  "category": "<string>",
  "opening_hours": [
    "<string>"
  ],
  "description": "<string>",
  "services_available": [
    "<string>"
  ],
  "additional_info": "<string>",
  "google_maps_place_id": "<string>",
  "phone": "<string>",
  "coordinates_latitude": "<string>",
  "coordinates_longitude": "<string>",
  "closed_temporarily": true,
  "closed_permanently": true
}

Authorizations

X-API-Key
string
header
required

Body

application/json

Response

200
application/json

Successful response

The response is of type object.