curl --request POST \
--url https://api.privetag.com/api/b2a/recommend \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"user_profile": {
"travel_type": "<string>",
"nationality": "<string>",
"interests": [
"<string>"
],
"budget": "<string>",
"age_group": "<string>"
},
"location": {
"city": "<string>",
"lat": 123,
"lon": 123,
"hotel_id": "<string>"
},
"filters": {
"is_indoor": true,
"difficulty": "<string>",
"max_price": 123,
"categories": [
"<string>"
]
},
"limit": 123,
"include_flash_deals": true
}
'