Ski Resort Profile API

Returns profile information for a ski resort, including its location and other useful details.

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

get
Authorizations
Path parameters
resortIdstringRequired
Responses
200
200 response
application/json
get
GET /resort/{resortId}/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-07-05",
    "numDaysOpenLastYear": 1,
    "projectedClosing": "2025-07-05"
  }
}

Last updated