api.hypixel.gcorecdn.reallyop.ml
Open in
urlscan Pro
2a03:90c0:999c::12
Public Scan
URL:
https://api.hypixel.gcorecdn.reallyop.ml/
Submission Tags: phishingrod
Submission: On January 04 via api from DE — Scanned from DE
Submission Tags: phishingrod
Submission: On January 04 via api from DE — Scanned from DE
Form analysis
0 forms found in the DOMText Content
* Introduction * Limits * Rules * GameTypes * Notes * Authentication * API * getAPI Key Information * Player Data * getData of a specific player, including game stats * getThe friends of a specific player * getThe recently played games of a specific player * getThe current online status of a specific player * getRetrieve a Guild by a player, id, or name * Resources * getGame Information * getAchievements * getChallenges * getQuests * getGuild Achievements * getVanity Pets * getVanity Companions * SkyBlock * getCollections * getSkills * getItems * getElection and Mayor * getActive Bingo Goals * getNews * getRequest auction(s) by the auction UUID, player UUID, or profile UUID. * getActive auctions * getRecently ended auctions * getBazaar * getProfile by UUID * getProfiles by player * getBingo data by player * getActive/Upcoming Fire Sales * Other * getActive Network Boosters * getCurrent Player Counts * getCurrent Leaderboards * getPunishment Statistics Documentation Powered by ReDoc HYPIXEL PUBLIC API (V1) Download OpenAPI specification:Download URL: https://support.hypixel.net Terms of Service UPCOMING SSL CERTIFICATE CHANGES On October 18th, 2022, our upstream provider Cloudflare will be deprecating the certificate authority that we are using to issue SSL certificates for the Hypixel Public API and other web services. You can read more about this change here. INTRODUCTION This is the official Hypixel API documentation. Hypixel Website - GitHub Repo - API Help Forum LIMITS API keys have a default rate limit of 120 requests per minute. Endpoints which require the use of an API key will also respond with headers to assist with managing the rate limit: * 'RateLimit-Limit' - The limit of requests per minute for the provided API key. * 'RateLimit-Remaining' - The remaining amount of requests allowed for the current minute. * 'RateLimit-Reset' - The amount of seconds until the next minute and the reset of the API key usages. If you require a higher limit please contact us via our support desk with an explanation for the increased limit and your Minecraft Account UUID. Please note that we do not give increased limits for future expansion, please only request an increase once you need it. RULES While the API is free to be used in most applications and scenarios, we do have some rules and we will not grant a limit increase for applications that violate these rules. * You may not use the API for commercial use. Any features that use the API must be available to all users. * You may not use the API for heavy continuous polling of data, such as requesting the same player every minute for detection of stats earned in a game. * You may not use methods such as multiple accounts to bypass the API limits. * Use of the API must conform to our Terms of Service. Any abuse of the API will lead to your API key being reset, or banned. GAMETYPES ID Type Name Database Name Clean Name 2 QUAKECRAFT Quake Quake 3 WALLS Walls Walls 4 PAINTBALL Paintball Paintball 5 SURVIVAL_GAMES HungerGames Blitz Survival Games 6 TNTGAMES TNTGames TNT Games 7 VAMPIREZ VampireZ VampireZ 13 WALLS3 Walls3 Mega Walls 14 ARCADE Arcade Arcade 17 ARENA Arena Arena 20 UHC UHC UHC Champions 21 MCGO MCGO Cops and Crims 23 BATTLEGROUND Battleground Warlords 24 SUPER_SMASH SuperSmash Smash Heroes 25 GINGERBREAD GingerBread Turbo Kart Racers 26 HOUSING Housing Housing 51 SKYWARS SkyWars SkyWars 52 TRUE_COMBAT TrueCombat Crazy Walls 54 SPEED_UHC SpeedUHC Speed UHC 55 SKYCLASH SkyClash SkyClash 56 LEGACY Legacy Classic Games 57 PROTOTYPE Prototype Prototype 58 BEDWARS Bedwars Bed Wars 59 MURDER_MYSTERY MurderMystery Murder Mystery 60 BUILD_BATTLE BuildBattle Build Battle 61 DUELS Duels Duels 63 SKYBLOCK SkyBlock SkyBlock 64 PIT Pit Pit 65 REPLAY Replay Replay 67 SMP SMP SMP STORAGE Games store their respective stats and data in a Player's stats collection. The game's specific data is held within a JSON object named after it's Database Name (seen above.) GAMETYPE NOTES * Clean names are what is displayed to the user when referencing the name. * Database names or IDs are used when the API references a specific GameType. NOTES DATE AND TIME Generally dates are stored as a Unix Epoch times in milliseconds. RESPONSE FORMAT Responses are served in JSON format. UUID PARAMETERS All uuid parameters support both dashed and undashed versions. SKYBLOCK ITEMS AND INVENTORIES Items and inventory data are stored as a base64 encoded string containing gzipped nbt data. If a method is missing important information about an item or inventory, you should try checking this! > Note: the base64 string may contain a unicode escape for non-alphabetical > symbols, and some programming languages may have silent defects when > interpreting the string. AUTHENTICATION APIKEY Can be obtained by joining the Minecraft server mc.hypixel.net and using the command /api. Security Scheme Type API Key Header parameter name: API-Key API API KEY INFORMATION AUTHORIZATIONS: ApiKey RESPONSES 200 Get key information 403 Access is forbidden, usually due to an invalid API key being used. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/key https://api.hypixel.net/key RESPONSE SAMPLES * 200 * 403 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "record": { * "key": "4adfe27e-63d3-45b9-8238-62b6ed6fdb5e", * "owner": "534359f7-5407-4b19-ba92-c71c370022a5", * "limit": 120, * "queriesInPastMin": 0, * "totalQueries": 0 } } PLAYER DATA DATA OF A SPECIFIC PLAYER, INCLUDING GAME STATS AUTHORIZATIONS: ApiKey QUERY PARAMETERS uuid required string RESPONSES 200 Get player's data 400 Some data is missing, this is usually a field. 403 Access is forbidden, usually due to an invalid API key being used. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/player https://api.hypixel.net/player RESPONSE SAMPLES * 200 * 400 * 403 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "player": { * "uuid": "3fa85f6457174562b3fc2c963f66afa6", * "displayname": "string", * "rank": "ADMIN", * "packageRank": "MVP_PLUS", * "newPackageRank": "MVP_PLUS", * "monthlyPackageRank": "SUPERSTAR", * "firstLogin": 0, * "lastLogin": 0, * "lastLogout": 0, * "stats": { } } } THE FRIENDS OF A SPECIFIC PLAYER AUTHORIZATIONS: ApiKey QUERY PARAMETERS uuid required string <uuid> RESPONSES 200 Get friends list 400 Some data is missing, this is usually a field. 403 Access is forbidden, usually due to an invalid API key being used. 422 Some data provided is invalid. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/friends https://api.hypixel.net/friends RESPONSE SAMPLES * 200 * 400 * 403 * 422 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "uuid": "ad8fefaa8351454bb739a4eaa872173f", * "records": [ * { * "_id": "string", * "uuidSender": "05405ce5-4afe-47b2-a579-0a40fdc00a8a", * "uuidReceiver": "57cda48e-a417-4107-b2b4-74f65c7364a3", * "started": 0 } ] } THE RECENTLY PLAYED GAMES OF A SPECIFIC PLAYER AUTHORIZATIONS: ApiKey QUERY PARAMETERS uuid required string RESPONSES 200 Get player's recent game 400 Some data is missing, this is usually a field. 403 Access is forbidden, usually due to an invalid API key being used. 422 Some data provided is invalid. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/recentgames https://api.hypixel.net/recentgames RESPONSE SAMPLES * 200 * 400 * 403 * 422 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f", * "games": [ * { * "date": 0, * "gameType": "string", * "mode": "string", * "map": "string", * "ended": 0 } ] } THE CURRENT ONLINE STATUS OF A SPECIFIC PLAYER AUTHORIZATIONS: ApiKey QUERY PARAMETERS uuid required string RESPONSES 200 Get player status 400 Some data is missing, this is usually a field. 403 Access is forbidden, usually due to an invalid API key being used. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/status https://api.hypixel.net/status RESPONSE SAMPLES * 200 * 400 * 403 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "uuid": "ad8fefaa8351454bb739a4eaa872173f", * "session": { * "online": true, * "gameType": "string", * "mode": "string", * "map": "string" } } RETRIEVE A GUILD BY A PLAYER, ID, OR NAME AUTHORIZATIONS: ApiKey QUERY PARAMETERS id string <objectid> player string <uuid> name string RESPONSES 200 Get guild information 400 Some data is missing, this is usually a field. 403 Access is forbidden, usually due to an invalid API key being used. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/guild https://api.hypixel.net/guild RESPONSE SAMPLES * 200 * 400 * 403 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "guild": { } } RESOURCES GAME INFORMATION Returns information about Hypixel Games. This endpoint is in early development and we are working to add more information when possible HypixelDev/PublicAPI#197 RESPONSES 200 A successful response get/resources/games https://api.hypixel.net/resources/games RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 0, * "games": { * "property1": { * "id": 58, * "name": "Bed Wars", * "databaseName": "Bedwars", * "modeNames": { * "BEDWARS_TWO_FOUR": "4v4", * "BEDWARS_EIGHT_ONE": "Solo" } }, * "property2": { * "id": 58, * "name": "Bed Wars", * "databaseName": "Bedwars", * "modeNames": { * "BEDWARS_TWO_FOUR": "4v4", * "BEDWARS_EIGHT_ONE": "Solo" } } } } ACHIEVEMENTS RESPONSES 200 A successful response get/resources/achievements https://api.hypixel.net/resources/achievements RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 0, * "achievements": { } } CHALLENGES RESPONSES 200 A successful response get/resources/challenges https://api.hypixel.net/resources/challenges RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 0, * "challenges": { } } QUESTS RESPONSES 200 A successful response get/resources/quests https://api.hypixel.net/resources/quests RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 0, * "quests": { } } GUILD ACHIEVEMENTS RESPONSES 200 A successful response get/resources/guilds/achievements https://api.hypixel.net/resources/guilds/achievements RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 0, * "one_time": { }, * "tiered": { } } VANITY PETS RESPONSES 200 A successful response get/resources/vanity/pets https://api.hypixel.net/resources/vanity/pets RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 0, * "types": { }, * "rarities": { } } VANITY COMPANIONS RESPONSES 200 A successful response get/resources/vanity/companions https://api.hypixel.net/resources/vanity/companions RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 0, * "types": { }, * "rarities": { } } SKYBLOCK COLLECTIONS Information regarding Collections in the SkyBlock game. RESPONSES 200 A successful response get/resources/skyblock/collections https://api.hypixel.net/resources/skyblock/collections RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 0, * "version": "0.11.22", * "collections": { } } SKILLS Information regarding skills in the SkyBlock game. RESPONSES 200 A successful response get/resources/skyblock/skills https://api.hypixel.net/resources/skyblock/skills RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 0, * "version": "0.11.22", * "skills": { } } ITEMS Information regarding items in the SkyBlock game. RESPONSES 200 A successful response get/resources/skyblock/items https://api.hypixel.net/resources/skyblock/items RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 0, * "items": [ * { * "material": "LEATHER_CHESTPLATE", * "color": "255,215,0", * "name": "Farm Armor Chestplate", * "category": "CHESTPLATE", * "tier": "RARE", * "stats": { * "DEFENSE": 75, * "HEALTH": 20 }, * "npc_sell_price": 5200, * "id": "FARM_ARMOR_CHESTPLATE" } ] } ELECTION AND MAYOR Information regarding the current mayor and ongoing election in SkyBlock. RESPONSES 200 A successful response get/resources/skyblock/election https://api.hypixel.net/resources/skyblock/election RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 0, * "mayor": { }, * "current": { } } ACTIVE BINGO GOALS Information regarding the current bingo event and its goals. RESPONSES 200 A successful response get/resources/skyblock/bingo https://api.hypixel.net/resources/skyblock/bingo RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 0, * "id": 0, * "goals": [ * { * "id": "string", * "name": "string", * "lore": "string", * "tiers": [ * 0 ], * "progress": 0, * "requiredAmount": 0 } ] } NEWS AUTHORIZATIONS: ApiKey RESPONSES 200 A successful response 403 Access is forbidden, usually due to an invalid API key being used. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/skyblock/news https://api.hypixel.net/skyblock/news RESPONSE SAMPLES * 200 * 403 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "items": [ * { * "item": { * "material": "DIAMOND" }, * "link": "https://hypixel.net", * "title": "SkyBlock v0.11", * "text": "15th January 2021" } ] } REQUEST AUCTION(S) BY THE AUCTION UUID, PLAYER UUID, OR PROFILE UUID. AUTHORIZATIONS: ApiKey QUERY PARAMETERS uuid string The auction UUID that you wish to request player string The player UUID that you wish to request profile string The profile UUID that you wish to request RESPONSES 200 A successful response 400 Some data is missing, this is usually a field. 403 Access is forbidden, usually due to an invalid API key being used. 422 Some data provided is invalid. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/skyblock/auction https://api.hypixel.net/skyblock/auction RESPONSE SAMPLES * 200 * 400 * 403 * 422 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "auctions": [ * { * "_id": "5dcdaf2244f4f4f350c02bf3", * "uuid": "409a1e0f261a49849493278d6cd9305a", * "auctioneer": "347ef6c1daac45ed9d1fa02818cf0fb6", * "profile_id": "347ef6c1daac45ed9d1fa02818cf0fb6", * "coop": [ * "347ef6c1daac45ed9d1fa02818cf0fb6" ], * "start": 1573760802637, * "end": 1573761102637, * "item_name": "Azure Bluet", * "item_lore": "§f§lCOMMON", * "extra": "Azure Bluet Red Rose", * "category": "blocks", * "tier": "COMMON", * "starting_bid": 1, * "item_bytes": { * "type": 0, * "data": "H4sIAAAAAAAAAB2NQQqCQBhGv1ErHaKu0KoLtGtnarRIhTpA/OGfDIwZ4wxUF/IeHiyyto/3eBKIIJQEIDx4qsJaYJK07m6FhG+p9hEdVMV7TXU3Wh+JWaW6h6ZXhODYGg5/LeZDfxt6nZR5XhYhgoIaxmKE8dsZXu20YwuJZfa0hmJrjbo6y134f8pTll5O5TnbbgAP05Qaqhk+8AVIrd2eoAAAAA==" }, * "claimed": true, * "claimed_bidders": [ ], * "highest_bid_amount": 7607533, * "bids": [ * { * "auction_id": "409a1e0f261a49849493278d6cd9305a", * "bidder": "99748e629dee463892f68abf3a780094", * "profile_id": "99748e629dee463892f68abf3a780094", * "amount": 7607533, * "timestamp": 1573760824844 } ] } ] } ACTIVE AUCTIONS Returns the currently active auctions sorted by last updated first and paginated. QUERY PARAMETERS page number Default: 0 RESPONSES 200 A successful response 404 The page provided does not exist. 422 The page provided is invalid. 503 The data is not yet populated and should be available shortly get/skyblock/auctions https://api.hypixel.net/skyblock/auctions RESPONSE SAMPLES * 200 * 404 * 422 * 503 Content type application/json Copy Expand all Collapse all { * "success": true, * "page": 0, * "totalPages": 32, * "totalAuctions": 31267, * "lastUpdated": 1571065561345, * "auctions": [ * { * "_id": "5dcdaf2244f4f4f350c02bf3", * "uuid": "409a1e0f261a49849493278d6cd9305a", * "auctioneer": "347ef6c1daac45ed9d1fa02818cf0fb6", * "profile_id": "347ef6c1daac45ed9d1fa02818cf0fb6", * "coop": [ * "347ef6c1daac45ed9d1fa02818cf0fb6" ], * "start": 1573760802637, * "end": 1573761102637, * "item_name": "Azure Bluet", * "item_lore": "§f§lCOMMON", * "extra": "Azure Bluet Red Rose", * "category": "blocks", * "tier": "COMMON", * "starting_bid": 1, * "item_bytes": { * "type": 0, * "data": "H4sIAAAAAAAAAB2NQQqCQBhGv1ErHaKu0KoLtGtnarRIhTpA/OGfDIwZ4wxUF/IeHiyyto/3eBKIIJQEIDx4qsJaYJK07m6FhG+p9hEdVMV7TXU3Wh+JWaW6h6ZXhODYGg5/LeZDfxt6nZR5XhYhgoIaxmKE8dsZXu20YwuJZfa0hmJrjbo6y134f8pTll5O5TnbbgAP05Qaqhk+8AVIrd2eoAAAAA==" }, * "claimed": true, * "claimed_bidders": [ ], * "highest_bid_amount": 7607533, * "bids": [ * { * "auction_id": "409a1e0f261a49849493278d6cd9305a", * "bidder": "99748e629dee463892f68abf3a780094", * "profile_id": "99748e629dee463892f68abf3a780094", * "amount": 7607533, * "timestamp": 1573760824844 } ] } ] } RECENTLY ENDED AUCTIONS SkyBlock auctions which ended in the last 60 seconds. RESPONSES 200 A successful response get/skyblock/auctions_ended https://api.hypixel.net/skyblock/auctions_ended RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 1607456463916, * "auctions": [ * { * "auction_id": "015fe0c67e6041e69797bbe0c2725a21", * "seller": "fc76242bf64a4698ae0ebc136d900929", * "seller_profile": "85b96cd3e73e4580b8379162ec059141", * "buyer": "c1eff55de0d24ec6b44848799e9323ba", * "timestamp": 1607456400329, * "price": 190000, * "bin": true, * "item_bytes": "H4sIAAAAAAAAAEWR3W7TQBCFx2mBxKgtSH2ArUACZKL6L9jtndUYBdHQyGlV7qq1PXZX9U+03kB6yYNw7ffwo/AgiHEC4m7mmz1nz87qACPQhA4A2gAGItUGGjy5qNeV0nTYUzzX4PlNFUvkDzwuUNuD0Uyk+LHgeUOi3zo8S0WzKvjjCPYva4lDoofwsmu9KS95juesaxPDN+GY0FJJrHJ1v4PWxKTDAfGQy4rQB8M2WVKLqqHGy2RdsrKuGoWSPYiiaNjbS/yGBQ3RMo3+TF0Vj+/I5NXWj+2u7Acr0hCbmGbfbdWgd60/5xtmOBM4JPq5p9sofY43W4tfP3+wfyn/++Bfn+91nYJBxS0VlLQoMFGCIvYu6FnvXcenindtMQ++htMT8u11dPH1vWiYUFiyhFcsRiYxq2WO6Qm86NozUkRBFLLl7VU0HcL+F14iHNAg4rRuyYINgg5H4UZJHiglRbxW2AxhVEuRi+qa53CwnF0t7hY30cUsWIbD/jdBj4JP0zC6ozBkul4Teu34Tua7vj124tQduz73xtxOvbGVoZtMbN/xnIyMlSixUbxcwZFln/qn9DX2ue2wxRxgAE93q6b3wR9BYJa/RAIAAA==" } ] } BAZAAR Returns the list of products along with their sell summary, buy summary and quick status. PRODUCT DESCRIPTION The returned product info has 3 main fields: * buy_summary * sell_summary * quick_status buy_summary and sell_summary are the current top 30 orders for each transaction type (in-game example: Stock of Stonks). quick_status is a computed summary of the live state of the product (used for advanced mode view in the bazaar): * sellVolume and buyVolume are the sum of item amounts in all orders. * sellPrice and buyPrice are the weighted average of the top 2% of orders by volume. * movingWeek is the historic transacted volume from last 7d + live state. * sellOrders and buyOrders are the count of active orders. RESPONSES 200 A successful response 503 The data is not yet populated and should be available shortly get/skyblock/bazaar https://api.hypixel.net/skyblock/bazaar RESPONSE SAMPLES * 200 * 503 Content type application/json Copy Expand all Collapse all { * "success": true, * "lastUpdated": 1590854517479, * "products": { * "INK_SACK:3": { * "product_id": "INK_SACK:3", * "sell_summary": [ * { * "amount": 20569, * "pricePerUnit": 4.2, * "orders": 1 }, * { * "amount": 140326, * "pricePerUnit": 3.8, * "orders": 2 } ], * "buy_summary": [ * { * "amount": 640, * "pricePerUnit": 4.8, * "orders": 1 }, * { * "amount": 640, * "pricePerUnit": 4.9, * "orders": 1 }, * { * "amount": 25957, * "pricePerUnit": 5, * "orders": 3 } ], * "quick_status": { * "productId": "INK_SACK:3", * "sellPrice": 4.2, * "sellVolume": 409855, * "sellMovingWeek": 8301075, * "sellOrders": 11, * "buyPrice": 4.99260315136572, * "buyVolume": 1254854, * "buyMovingWeek": 5830656, * "buyOrders": 85 } } } } PROFILE BY UUID SkyBlock profile data, such as stats, objectives etc. The data returned can differ depending on the players in-game API settings. AUTHORIZATIONS: ApiKey QUERY PARAMETERS profile string <uuid> RESPONSES 200 A successful response 400 Some data is missing, this is usually a field. 403 Access is forbidden, usually due to an invalid API key being used. 422 Some data provided is invalid. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/skyblock/profile https://api.hypixel.net/skyblock/profile RESPONSE SAMPLES * 200 * 400 * 403 * 422 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "profile": { * "profile_id": "bfcb6779-b1f9-41fc-92d7-88f8bc1d12e8", * "members": { }, * "community_upgrades": { }, * "cute_name": "string", * "banking": { }, * "game_mode": "string" } } PROFILES BY PLAYER AUTHORIZATIONS: ApiKey QUERY PARAMETERS uuid string <uuid> RESPONSES 200 A successful response 400 Some data is missing, this is usually a field. 403 Access is forbidden, usually due to an invalid API key being used. 422 Some data provided is invalid. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/skyblock/profiles https://api.hypixel.net/skyblock/profiles RESPONSE SAMPLES * 200 * 400 * 403 * 422 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "profiles": [ * { * "profile_id": "bfcb6779-b1f9-41fc-92d7-88f8bc1d12e8", * "members": { }, * "community_upgrades": { }, * "cute_name": "string", * "banking": { }, * "game_mode": "string" } ] } BINGO DATA BY PLAYER Bingo data for participated events of the provided player. AUTHORIZATIONS: ApiKey QUERY PARAMETERS uuid string <uuid> RESPONSES 200 A successful response 400 Some data is missing, this is usually a field. 403 Access is forbidden, usually due to an invalid API key being used. 404 No data could be found for the provided player uuid. 422 Some data provided is invalid. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/skyblock/bingo https://api.hypixel.net/skyblock/bingo RESPONSE SAMPLES * 200 * 400 * 403 * 404 * 422 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "events": [ * { * "key": 2, * "points": 117, * "completed_goals": [ * [ * "stat_walk_speed", * "KILL_TRAPPER_MOB" ] ] } ] } ACTIVE/UPCOMING FIRE SALES Retrieve the currently active or upcoming Fire Sales for SkyBlock. RESPONSES 200 A successful response get/skyblock/firesales https://api.hypixel.net/skyblock/firesales RESPONSE SAMPLES * 200 Content type application/json Copy Expand all Collapse all { * "success": true, * "sales": [ * { * "item_id": "string", * "start": 0, * "end": 0, * "amount": 0, * "price": 0 } ] } OTHER ACTIVE NETWORK BOOSTERS AUTHORIZATIONS: ApiKey RESPONSES 200 Get boosters list 403 Access is forbidden, usually due to an invalid API key being used. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/boosters https://api.hypixel.net/boosters RESPONSE SAMPLES * 200 * 403 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "boosters": [ * { * "_id": "string", * "purchaserUuid": "ad8fefaa8351454bb739a4eaa872173f", * "amount": 0, * "originalLength": 0, * "length": 0, * "gameType": 0, * "dateActivated": 0, * "stacked": [ * "ad8fefaa-8351-454b-b739-a4eaa872173f" ] } ], * "boosterState": { * "decrementing": true } } CURRENT PLAYER COUNTS AUTHORIZATIONS: ApiKey RESPONSES 200 A successful response 403 Access is forbidden, usually due to an invalid API key being used. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. get/counts https://api.hypixel.net/counts RESPONSE SAMPLES * 200 * 403 * 429 Content type application/json Copy Expand all Collapse all { * "success": true, * "playerCount": 0, * "games": { * "GAME_TYPE": { * "players": 2, * "modes": { * "mode_1": 1, * "mode_2": 1 } } } } CURRENT LEADERBOARDS AUTHORIZATIONS: ApiKey RESPONSES 200 A successful response 403 Access is forbidden, usually due to an invalid API key being used. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. 503 The data is not yet populated and should be available shortly get/leaderboards https://api.hypixel.net/leaderboards RESPONSE SAMPLES * 200 * 403 * 429 * 503 Content type application/json Copy Expand all Collapse all { * "success": true, * "leaderboards": { } } PUNISHMENT STATISTICS AUTHORIZATIONS: ApiKey RESPONSES 200 A successful response 403 Access is forbidden, usually due to an invalid API key being used. 429 A request limit has been reached, usually this is due to the limit on the key being reached but can also be triggered by a global throttle. 503 The data is not yet populated and should be available shortly get/punishmentstats https://api.hypixel.net/punishmentstats RESPONSE SAMPLES * 200 * 403 * 429 * 503 Content type application/json Copy Expand all Collapse all { * "success": true, * "watchdog_lastMinute": 0, * "staff_rollingDaily": 0, * "watchdog_total": 0, * "watchdog_rollingDaily": 0, * "staff_total": 0 }