Profiles API

Returns profile information for ski resorts, including their location and other useful details.

The resort profile endpoint returns key resort statistics, that are largely static.

get
Authorizations
Query parameters
regionIdstringOptional
resortIdsstringOptional
Responses
200

200 response

application/json
get
GET /resorts/profile HTTP/1.1
Host: partner-api.onthesnow.com
x-api-key: YOUR_API_KEY
Accept: */*
200

200 response

[
  {
    "elevation": {
      "verticalDrop": 1,
      "summit": 1,
      "base": 1
    },
    "website": "text",
    "resortName": "text",
    "location": {
      "zip": "text",
      "city": "text",
      "stateName": "text",
      "street": "text",
      "latitude": 1,
      "countryName": "text",
      "longitude": 1
    },
    "lifts": {
      "total": 1,
      "details": [
        "text"
      ],
      "open": 1
    },
    "id": 1,
    "runs": {
      "expert": 1,
      "total": 1,
      "beginner": 1,
      "advanced": 1,
      "intermediate": 1,
      "totalRunsLength": 1
    },
    "terrain": {
      "km": 1,
      "acres": 1,
      "skiReturn": 1
    },
    "facts": {
      "projectedOpening": "2025-08-14",
      "numDaysOpenLastYear": 1,
      "projectedClosing": "2025-08-14"
    }
  }
]

Last updated