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

Resorts

Return resorts based on optional region name filters

PreviousAPI referenceNextResort Snowreport and Snowfall API

Last updated 3 months ago

The /resorts GET endpoint returns all resorts available and active within MountainNews. It is recommended to use this endpoint to identify resort ids you would like to pull snow report information for. We recommend caching the results to this endpoint.

You can filter to a specific set of resorts based on the following optional filters

  • state - Filter to resorts based on a state name filter (e.g. ?state=Colorado)

  • country - Filter to resorts based on a country name filter (e.g. ?country=France)

  • continent - Filter to resorts based on a continent name filter (e.g. ?continent=Europe)

get
Authorizations
Query parameters
statestringOptional
continentstringOptional
resortNamestringOptional
countrystringOptional
Responses
200
200 response
application/json
get
GET /resorts HTTP/1.1
Host: partner-api.onthesnow.com
x-api-key: YOUR_API_KEY
Accept: */*
200

200 response

[
  {
    "continent": "text",
    "country": "text",
    "name": "text",
    "state": "text",
    "id": 1
  }
]