POST
/
actions
/
googlemaps-extract-reviews
/
run
/
live
curl --request POST \
  --url https://api.captaindata.com/v4/actions/googlemaps-extract-reviews/run/live \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "parameters": {},
  "input": {
    "google_maps_place_url": "<string>"
  }
}'
[
  {
    "source": "<string>",
    "google_maps_review_id": "<string>",
    "google_maps_review_url": "<string>",
    "author_name": "<string>",
    "author_img": "<string>",
    "experience_date": "<string>",
    "grade": 123,
    "author_reviews_count": 123,
    "review_date": "2023-11-07T05:31:56Z",
    "standard_review_date": "2023-11-07T05:31:56Z",
    "answer_date": "2023-11-07T05:31:56Z",
    "standard_answer_date": "<string>",
    "content": "<string>",
    "answer": "<string>",
    "translated_content": "<string>",
    "translated_answer": "<string>",
    "city": "<string>",
    "review_language": "<string>",
    "google_maps_place_url": "<string>",
    "place_name": "<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:10

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: 10 <= x <= 10
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[].