> For the complete documentation index, see [llms.txt](https://partner.docs.onthesnow.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://partner.docs.onthesnow.com/api-reference/resorts.md).

# Resorts

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 /resorts

>

```json
{"openapi":"3.0.1","info":{"title":"partner-api","version":"1.0"},"servers":[{"url":"https://partner-api.onthesnow.com"}],"security":[{"api_key":[]}],"components":{"securitySchemes":{"api_key":{"type":"apiKey","name":"x-api-key","in":"header"}},"schemas":{"PartnerResortItems":{"type":"array","description":"Collection of partner resorts","items":{"type":"object","properties":{"continent":{"type":"string","description":"Resort Continent"},"country":{"type":"string","description":"Resort country"},"regionId":{"type":"number","description":"Unique identifier of the region"},"name":{"type":"string","description":"Name of the resort"},"id":{"type":"number","description":"Unique identifier of the resort"},"state":{"type":"string","description":"Resort State"}}}}}},"paths":{"/resorts":{"get":{"operationId":"listResorts","parameters":[{"name":"state","in":"query","schema":{"type":"string"}},{"name":"continent","in":"query","schema":{"type":"string"}},{"name":"resortName","in":"query","schema":{"type":"string"}},{"name":"country","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"200 response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PartnerResortItems"}}}}}}}}}
```
