Endpoint Playground
Test Crawlora's Search Expedia flights 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/flights/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| option (body) | object | Yes | Flights search payload |
{
"code": 200,
"msg": "OK",
"data": {
"origin": "JFK",
"destination": "LAX",
"departure_date": "2026-08-17",
"return_date": "2026-08-18",
"offers": [
{
"airline": "JetBlue Airways",
"route": "New York (JFK) - Los Angeles (LAX)",
"departure_time": "7:30am",
"arrival_time": "10:26am",
"stops": 0,
"duration_summary": "5h 56m • Nonstop",
"price": "$551",
"price_note": "Roundtrip per traveler"
}
]
}
}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 Flights search results (departing-leg offers) for an origin/destination IATA pair and date range.
{
"code": 200,
"msg": "OK",
"data": {
"origin": "JFK",
"destination": "LAX",
"departure_date": "2026-08-17",
"return_date": "2026-08-18",
"offers": [
{
"airline": "JetBlue Airways",
"route": "New York (JFK) - Los Angeles (LAX)",
"departure_time": "7:30am",
"arrival_time": "10:26am",
"stops": 0,
"duration_summary": "5h 56m • Nonstop",
"price": "$551",
"price_note": "Roundtrip per traveler"
}
]
}
}curl "https://api.crawlora.net/api/v1/expedia/flights/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"