|
| 1 | +# epic mix API calls (extracted from mobile app) |
| 2 | + |
| 3 | +## get all resorts |
| 4 | +`curl -H 'accept: application/json, text/plain, */*' \ |
| 5 | + -H 'accept-language: en-US,en;q=0.9' \ -H 'user-agent: MyEpic/160000 ios' --compressed \ |
| 6 | + https://digital-gw.azmtn.com/uiservice/api/v1/resorts | jq .` |
| 7 | + |
| 8 | + |
| 9 | +## get daily stats for park city |
| 10 | +`curl -H 'accept: application/json, text/plain, */*' \ |
| 11 | +-H 'accept-language: en-US,en;q=0.9' -H 'user-agent: MyEpic/160000 ios' --compressed \ |
| 12 | +https://digital-gw.azmtn.com/uiservice/api/v1/resorts/14/daily-stats | jq .` |
| 13 | + |
| 14 | + |
| 15 | +## get basic data for park city |
| 16 | +`curl ' -H 'accept: application/json, text/plain, */*' \ |
| 17 | + -H 'accept-language: en-US,en;q=0.9' -H 'user-agent: MyEpic/160000 ios' --compressed \ |
| 18 | + https://digital-gw.azmtn.com/uiservice/api/v1/resorts/14 | jq .` |
| 19 | + |
| 20 | +## more details for park city |
| 21 | +`curl -H 'accept: application/json, text/plain, */*' -H 'accept-language: en-US,en;q=0.9' \ |
| 22 | +-H 'user-agent: MyEpic/160000 ios' --compressed \ |
| 23 | +https://digital-gw.azmtn.com/uiservice/api/v1/resorts/14/home` |
| 24 | + |
| 25 | +## get maps for park city |
| 26 | +`curl -H 'cookie: ' -H 'accept: application/json, text/plain, */*' -H 'accept-language: en-US,en;q=0.9' -H 'user-agent: MyEpic/160000 ios' --compressed https://digital-gw.azmtn.com/uiservice/api/v1/resorts/14/maps` |
| 27 | + |
| 28 | +## get wait times for park city |
| 29 | +`curl -H 'accept: application/json, text/plain, */*' -H 'accept-language: en-US,en;q=0.9' -H 'user-agent: MyEpic/160000 ios' --compressed https://digital-gw.azmtn.com/uiservice/api/v1/resorts/14/wait-times` |
| 30 | + |
| 31 | +## get weather for park city |
| 32 | +`curl -H 'accept: application/json, text/plain, */*' -H 'accept-language: en-US,en;q=0.9' -H 'user-agent: MyEpic/160000 ios' --compressed https://digital-gw.azmtn.com/uiservice/api/v1/resorts/14/weather` |
| 33 | + |
| 34 | +## get webcams for park city |
| 35 | +`curl -H 'accept: application/json, text/plain, */*' -H 'accept-language: en-US,en;q=0.9' -H 'user-agent: MyEpic/160000 ios' --compressed https://digital-gw.azmtn.com/uiservice/api/v1/resorts/14/webcam-screen` |
0 commit comments