Endpoint Playground
Test Crawlora's Search Expedia 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/expedia/activities/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| option (body) | object | Yes | Activity search payload |
{
"code": 200,
"msg": "OK",
"data": {
"destination": "Miami Beach, Florida, United States of America",
"region_id": "8833",
"page": 1,
"total_count": 689,
"activities": [
{
"id": "263283",
"name": "Boat Tour in Miami",
"thumbnail_url": "https://mediaim.expedia.com/localexpert/263283/0c1991a1-d38c-4ae9-8ca1-e514b9622290.jpg",
"duration": "1h 30m",
"review_score": "8.6/10",
"review_count": 1037,
"review_label": "Excellent",
"price": "$29",
"free_cancellation": true
}
]
}
}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 normalized Expedia Things To Do (activities/tours) search results for a free-text destination and date range.
{
"code": 200,
"msg": "OK",
"data": {
"destination": "Miami Beach, Florida, United States of America",
"region_id": "8833",
"page": 1,
"total_count": 689,
"activities": [
{
"id": "263283",
"name": "Boat Tour in Miami",
"thumbnail_url": "https://mediaim.expedia.com/localexpert/263283/0c1991a1-d38c-4ae9-8ca1-e514b9622290.jpg",
"duration": "1h 30m",
"review_score": "8.6/10",
"review_count": 1037,
"review_label": "Excellent",
"price": "$29",
"free_cancellation": true
}
]
}
}curl "https://api.crawlora.net/api/v1/expedia/activities/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"