I've actually confirmed that it works for the other endpoints as well:
- `profile:me`
- `curl -X GET "https://api.itch.io/profile" -H "Authorization: Bearer ACCESS_TOKEN"`
- `profile:games`
- `curl -X GET "https://api.itch.io/profile/games" -H "Authorization: Bearer ACCESS_TOKEN"`
- `profile:collections`
- `curl -X GET "https://api.itch.io/profile/collections" -H "Authorization: Bearer ACCESS_TOKEN"`
- `profile:owned`
- `curl -X GET "https://api.itch.io/profile/owned-keys" -H "Authorization: Bearer ACCESS_TOKEN"`
- `game:view:ownership`
- `curl -X GET "https://api.itch.io/games/GAME_ID/ownership" -H "Authorization: Bearer ACCESS_TOKEN"`
- `game:view:rewards`
- `curl -X GET "https://api.itch.io/games/GAME_ID/claimed-rewards" -H "Authorization: Bearer ACCESS_TOKEN"`