DocumentationDashboard

Tripadvisor

Business Search

Find hotels, restaurants and attractions on Tripadvisor by name or category. Returns the url_path the reviews endpoint takes.

GET/v1/tripadvisor/search19 creditsheavyqueue only

Calling this endpoint

The source behind this endpoint answers from a queue, and that queue outlives an HTTP request — so there is no live call to make. Queue it as a task and poll for the result; /v1/tripadvisor/search itself answers 400 async_only.

curl --request POST 'https://data-api.roketfy.com/v1/tasks' \
  --header 'Authorization: Bearer YOUR_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
  "platform": "tripadvisor",
  "endpoint": "search",
  "params": {
    "keyword": "<keyword>"
  }
}'

See batch tasks for the full lifecycle.

Parameters

NameTypeRequiredDescription
keywordstringrequiredBusiness name, category or a prominent place. Up to 700 characters.
location_namestringoptionalFull location name, e.g. "Istanbul,Turkey". Either this or location_code.
location_codenumberoptionalNumeric location code. Either this or location_name.
depthnumberoptionalResults to return, 1-210. Default 30. Billed per 30.
task_idstringoptionalCollect an upstream task that timed out earlier instead of starting a new one. Pass the `task_id` from the failed task's error.

MCP

Available to AI agents as the tool tripadvisor_search, with the same parameters and the same credit cost. The tool queues a task and returns its id, like the HTTP flow above.