Endpoint Playground
Test Crawlora's Search Agoda activities API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/agoda/activities/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| keyword | string | No | Free-text activity search keyword. When omitted, the resolved city's name is used instead. | |
| city_id | integer | No | Numeric Agoda city id to filter results to. Optional if keyword is supplied; city_id takes precedence over city when both are supplied. | |
| city | string | No | Free-text city name, used directly as the search text when keyword is omitted, and to resolve a city id filter. |
{
"code": 200,
"msg": "OK",
"data": {
"city_id": 9395,
"keyword": "chim chum",
"count": 1,
"activities": [
{
"activity_id": 1633875,
"name": "Bangkok Chim Chum | Bangkok",
"city_id": 9395,
"city_name": "Bangkok",
"categories": [
{
"id": 2,
"code": "FOOD_AND_DRINKS",
"is_primary": true
}
],
"source_url": "https://www.agoda.com/search?cityId=9395&selectedActivity=1633875"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns Agoda activities (tours, attractions, experiences) matching a free-text keyword and/or a city. When keyword is omitted, the resolved city's name is used instead to return a general listing of activities in that city. Callers may supply a known Agoda city id or a free-text city name for the city filter; when both are supplied city_id takes precedence. Credential-free public data from Agoda's own destination search.
{
"code": 200,
"msg": "OK",
"data": {
"city_id": 9395,
"keyword": "chim chum",
"count": 1,
"activities": [
{
"activity_id": 1633875,
"name": "Bangkok Chim Chum | Bangkok",
"city_id": 9395,
"city_name": "Bangkok",
"categories": [
{
"id": 2,
"code": "FOOD_AND_DRINKS",
"is_primary": true
}
],
"source_url": "https://www.agoda.com/search?cityId=9395&selectedActivity=1633875"
}
]
}
}curl "https://api.crawlora.net/api/v1/agoda/activities/search" \
-H "x-api-key: $CRAWLORA_API_KEY"