This endpoint provides a cached list of activities available in a specific destination. Each item includes the activity code, name, available modalities, pax range, supplier, and other essential data. It is ideal for partners looking to sync or cache activity data by destination
Endpoint
GET https://api.test.hotelbeds.com/activity-cache-api/1.0/portfolio?destination={{DESTINATION}}&offset={{OFFSET}}&limit={{LIMIT}}
Parameter | Type | Required | Description |
---|---|---|---|
destination |
string | Yes | Destination code (e.g., "PMI", "BCN") to filter activities. |
offset |
int | Yes | Index of the first result to return (used for pagination). |
limit |
int | Yes | Maximum number of results to return. |
Status Code: 200 OK
Response Fields (per activity):
Each one contains:
Modality each one contains:
Example Response:
[
{
"code": "E-E10-000020010",
"name": "Surf Lounge Ibiza",
"type": "TICKET",
"country": "ES",
"destination": "BCN",
"modalities": [
{
"code": "1",
"name": "VIP riders - 30 pax 1 hour",
"onSale": true,
"rates": ["STANDARD"],
"languages": [],
"sessions": []
}
],
"paxRange": { "min": 1, "max": 99 },
"suppliers": [
{
"code": "0000195226",
"name": "ROLDAN SERVICIO DE TRANS. ESPEC. SL"
}
]
}