SissiPark

SissiPark Developer API

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.

Endpoints

GET /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"
Response example
{
  "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", ... }
  ]
}
GET /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"
Response example
{
  "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" }
  ]
}
GET /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"
Response example
{
  "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" }
  ]
}

AI Integrations

MCP Server

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

  • Desktop app / claude.ai — Settings → Connectors → Add custom connector → paste the URL
  • Claude Codeclaude mcp add --transport http sissipark https://sissipark.at/mcp
Manual config (claude_desktop_config.json)
{
  "mcpServers": {
    "sissipark": {
      "type": "url",
      "url": "https://sissipark.at/mcp"
    }
  }
}

ChatGPT

  • Web app — Settings → Apps → Create app → paste the URL (authentication: none)

The OpenAPI spec is also available for other integrations.

3 tools: get_apartments, get_pricing, get_availability | OpenAPI spec
OpenAPI (YAML) OpenAPI (JSON) | sissipark.at