Public, read-only API for SissiPark apartment resorts. Query real-time apartment details,
pricing, and availability across our Austrian alpine and Tenerife locations.
All endpoints return JSON (Accept: application/json) or HTML.
/api/v1/apartments
List apartments with details, amenities, photos, and price ranges. Optional: location, locale.
curl -H "Accept: application/json" \
"https://sissipark.at/api/v1/apartments?location=lachtal&locale=en"
{
"location": { "name": "SissiPark Lachtal", "slug": "lachtal", ... },
"apartments": [
{ "id": 1, "code": "2A", "name": "Two Bedroom Apartment",
"area": 58, "bedrooms": 2, "maxGuests": 6,
"priceRange": { "min": 89, "max": 179, "currency": "EUR", "unit": "night" },
"bookingUrl": "https://lachtal.sissipark.at/en", ... }
]
}
/api/v1/pricing
Real-time per-night and total prices. Required: location, from, to. Optional: locale.
curl -H "Accept: application/json" \
"https://sissipark.at/api/v1/pricing?location=lachtal&from=2026-07-01&to=2026-07-07&locale=en"
{
"location": "lachtal", "currency": "EUR",
"period": { "from": "2026-07-01", "to": "2026-07-07", "nights": 6 },
"apartments": [
{ "id": 1, "code": "2A", "name": "Two Bedroom Apartment",
"pricePerNight": 119, "totalPrice": 714, "season": "Summer 2026",
"bookingUrl": "https://lachtal.sissipark.at/en?from=2026-07-01&to=2026-07-07" }
]
}
/api/v1/availability
Check apartment availability. Required: location, from, to. Optional: locale.
curl -H "Accept: application/json" \
"https://sissipark.at/api/v1/availability?location=lachtal&from=2026-07-01&to=2026-07-07&locale=en"
{
"location": "lachtal",
"period": { "from": "2026-07-01", "to": "2026-07-07", "nights": 6 },
"apartments": [
{ "id": 1, "code": "2A", "name": "Two Bedroom Apartment",
"maxGuests": 6, "totalUnits": 4, "availableUnits": 2,
"bookingUrl": "https://lachtal.sissipark.at/en?from=2026-07-01&to=2026-07-07" }
]
}
SissiPark provides a remote MCP server. No installation needed — just add the URL to your AI client. Works with Claude, ChatGPT, and any MCP-compatible client.
https://sissipark.at/mcp
Claude
claude mcp add --transport http sissipark https://sissipark.at/mcp{
"mcpServers": {
"sissipark": {
"type": "url",
"url": "https://sissipark.at/mcp"
}
}
}
ChatGPT
The OpenAPI spec is also available for other integrations.