Resorts
Return resorts based on optional region name filters
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)
200 response
Collection of partner resorts
Resort Continent
Resort country
Unique identifier of the region
Name of the resort
Unique identifier of the resort
Resort State
GET /resorts HTTP/1.1
Host: partner-api.onthesnow.com
x-api-key: YOUR_API_KEY
Accept: */*
200 response
[
{
"continent": "text",
"country": "text",
"regionId": 1,
"name": "text",
"id": 1,
"state": "text"
}
]Last updated