POST
/
actions
/
tripadvisor-extract-reviews
/
run
/
live
curl --request POST \
  --url https://api.captaindata.com/v4/actions/tripadvisor-extract-reviews/run/live \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "parameters": {
    "language": "all"
  },
  "integration_users": [
    "<string>"
  ],
  "rotate_users": false,
  "input": {
    "tripadvisor_reviews_url": "<string>"
  }
}'
[
  {
    "property": "<string>",
    "tripadvisor_reviews_id": "<string>",
    "tripadvisor_reviews_url": "<string>",
    "tripadvisor_reviewer_url": "<string>",
    "review_comment": "<string>",
    "review_response": "<string>",
    "reviewer_picture": "<string>",
    "experience_date": "2023-12-25",
    "reviewer_name": "<string>",
    "review_date": "2023-12-25",
    "tripadvisor_review_url": "<string>",
    "review_title": "<string>",
    "review_image": "<string>",
    "tripadvisor_review_id": 123,
    "review_rating": 123
  }
]

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:15

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: 15 <= x <= 15

Body

application/json

Response

200
application/json

Successful response

The response is of type object[].