POST
/
actions
/
googlemaps-search-places
/
run
/
live
curl --request POST \
  --url https://api.captaindata.com/v4/actions/googlemaps-search-places/run/live \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "parameters": {},
  "input": {
    "google_maps_search_url": "<string>"
  }
}'
[
  {
    "google_maps_place_url": "<string>"
  }
]

Authorizations

X-API-Key
string
header
required

Query Parameters

page
integer
default:1

Page index for manual pagination, starting at 1; increase sequentially (page=1, page=2, etc.) until the response returns an empty data array.

page_size
integer
default:20

Maximum number of results per page (read-only; defined by the Action, actual count may be lower in some cases like throttling or internal limits).

Required range: 20 <= x <= 20
token
string

Returned by some Actions to support cursor-based pagination; pass it as a query param to continue where the last request ended. Omit if not present — it means there are no more results.

Body

application/json

Response

200
application/json

Successful response

The response is of type object[].