get_offer_details
Retrieve comprehensive details about a specific flight offer to facilitate informed travel decisions, using the unique offer ID for accurate results.
Instructions
Get detailed information about a specific flight offer.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"OfferDetails": {
"description": "Model for getting detailed offer information.",
"properties": {
"offer_id": {
"description": "The ID of the offer to get details for",
"title": "Offer Id",
"type": "string"
}
},
"required": [
"offer_id"
],
"title": "OfferDetails",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/OfferDetails"
}
},
"required": [
"params"
],
"title": "get_offer_detailsArguments",
"type": "object"
}