Endpoint Playground
Test Crawlora's Get Agoda flight segment amenities 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/flights/itinerary-amenities" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| body (body) | object | Yes | One or more flight segments to fetch amenities for |
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"segments": [
{
"flight_number": "772",
"amenities": [
"A350 Widebody jet",
"Alcoholic beverages available (Free)",
"On-demand video (Free)",
"Meal available (Free)",
"3-3-3 Layout",
"Fast Wifi Available (Paid)"
]
}
]
}
}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 real-content amenities (aircraft type, seat layout, meals, entertainment, wifi) for one or more flight segments. Copy the segments straight from a flight search response's own segment fields. Credential-free public data from Agoda's own flight content service.
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"segments": [
{
"flight_number": "772",
"amenities": [
"A350 Widebody jet",
"Alcoholic beverages available (Free)",
"On-demand video (Free)",
"Meal available (Free)",
"3-3-3 Layout",
"Fast Wifi Available (Paid)"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/agoda/flights/itinerary-amenities" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"