Priority Baggage Fees
This feature can be enabled in the API request by including:
"control": {
"features": [
"priority_baggage"
]
}
The Priority Baggage UTA category provides detailed, structured data about priority baggage services, including benefits and restrictions, sourced from airlines’ Branded Fares filings. This addition ensures that priority baggage services are accurately represented and easily accessible through Routehappy’s API and UTA DataKit files.
Once the feature is enabled in the API request, the priority_baggage
list will appear for all Priority Baggage items in the response.
This is an example response for a single priority baggage:
{
"data": {
...
"priority_baggage": [
{
"application": "free",
"assessment": "Benefit",
"code": "0LF",
"commercial_name": "PRIORITY BAGGAGE",
"description": "Priority Baggage for free",
"group_code": "BF",
"headline": "For free",
"id": "5127427",
"large_icon_url": "...",
"small_icon_url": "...",
"sub_group_code": "PY"
}
],
...
},
"itineraries": [
{
"data": {
"legs": [
{
"fares": [
{
"segments": [
{
...
"priority_baggage": [
[
"5127427"
]
],
...
}
]
}
],
...
}
]
},
...
}
],
"uuid": "..."
}