Mountain News Partner API
  • Mountain News Partner API
  • FAQs
  • API reference
    • Resorts
    • Resort Snowreport and Snowfall API
    • Ski Resort Webcams API
    • Ski Resort Profile API
    • Ski Resort Weather API
  • Specification
Powered by GitBook
On this page
  1. API reference

Ski Resort Profile API

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

PreviousSki Resort Webcams APINextSki Resort Weather API

Last updated 3 months ago

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-05-24",
    "numDaysOpenLastYear": 1,
    "projectedClosing": "2025-05-24"
  }
}