summaryrefslogtreecommitdiff
path: root/hypixel_api.sh
blob: 9f2bb22106b6fe7dd57be6e4aa247d4c5256c77f (plain)
1
2
3
4
5
6
7
8
9
10
11
hypixel_request() {
  # Usage: hypixel_request <path>
  curl "https://api.hypixel.net/$1" -H "api-key: $HYPIXEL_KEY" 2>/dev/null
}

get_profiles_by_uuid() {
  # Usage: get_profiles_by_uuid <uuid>
  hypixel_request "v2/skyblock/profiles?uuid=$1"
}