{"id":2720,"date":"2021-01-09T13:00:00","date_gmt":"2021-01-09T13:00:00","guid":{"rendered":"https:\/\/chewett.co.uk\/blog\/?p=2720"},"modified":"2021-01-02T10:31:23","modified_gmt":"2021-01-02T10:31:23","slug":"pokemon-go-api-go-battle-rankings-settings-api","status":"publish","type":"post","link":"https:\/\/chewett.co.uk\/blog\/2720\/pokemon-go-api-go-battle-rankings-settings-api\/","title":{"rendered":"Pokemon Go API &#8211; Go Battle Rankings Settings API"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"678\" height=\"254\" data-attachment-id=\"2722\" data-permalink=\"https:\/\/chewett.co.uk\/blog\/2720\/pokemon-go-api-go-battle-rankings-settings-api\/pogo_api_header_gobattleranking\/\" data-orig-file=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_gobattleranking.jpg?fit=800%2C300&amp;ssl=1\" data-orig-size=\"800,300\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"pogo_api_header_gobattleranking\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_gobattleranking.jpg?fit=300%2C113&amp;ssl=1\" data-large-file=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_gobattleranking.jpg?fit=678%2C254&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_gobattleranking.jpg?resize=678%2C254&#038;ssl=1\" alt=\"\" class=\"wp-image-2722\" srcset=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_gobattleranking.jpg?w=800&amp;ssl=1 800w, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_gobattleranking.jpg?resize=300%2C113&amp;ssl=1 300w, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_gobattleranking.jpg?resize=768%2C288&amp;ssl=1 768w, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_gobattleranking.jpg?resize=50%2C19&amp;ssl=1 50w\" sizes=\"auto, (max-width: 678px) 100vw, 678px\" \/><\/figure>\n\n\n\n<p>This post talks about the latest API I have added to PoGoAPI.net, the Mega Evolution Settings API.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">What are the Go Battle Rankings Settings API<\/h2>\n\n\n\n<p>In Pokemon Go you are able to fight in the Battle League against other trainers. Here you battle in sets of five matches to receive rewards.<\/p>\n\n\n\n<p>At the end of each set if you meet the requirements you will rank up to the next rank.<\/p>\n\n\n\n<p>This holds the details of what you need to do to reach each rank, at which rank you can see your rating, and what you need to be eligible for rewards at the end of the season.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Getting the Go Battle Rankings Settings data<\/h2>\n\n\n\n<p>This API returns the game master settings for the Pokemon Go Battle league rankings.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">GET <code>\/api\/v1\/<code><code>gobattle_ranking_settings<\/code><\/code>.json<\/code><\/h3>\n\n\n\n<p>Returns a JSON object with the following keys:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>min_rank_to_display_rating &#8211; This is the minimum ranking you must be before your Go Battle league rating is displayed<\/li><li>rank_requirements &#8211; An array of objects with with at least the key rank telling you what you need to achieve to get to that rank level. Other keys include min_rating and additional_battles_required which define the rating you need to achieve to reach the rank and the number of battles you need to win in the previous rank to reach the next.<\/li><li>requirements_for_rewards &#8211; A dict with the keys min_total_battles and rank telling how many battles you have to fight and what rank you must be to be eligible for rewards at the end of the season.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Example data<\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\n{\n    &quot;min_rank_to_display_rating&quot;: 9,\n    &quot;rank_requirements&quot;: &#x5B;\n        {\n            &quot;rank&quot;: 1\n        },\n        {\n            &quot;additional_battles_required&quot;: 5,\n            &quot;rank&quot;: 2\n        }, ...\n        {\n            &quot;min_rating&quot;: 3000,\n            &quot;rank&quot;: 10\n        }\n    ],\n    &quot;requirements_for_rewards&quot;: {\n        &quot;min_total_battles&quot;: 5,\n        &quot;rank&quot;: 1\n    }\n}\n<\/pre><\/div>\n\n\n<p id=\"block-c7ab1e16-3ce1-4b17-8319-614af6909736\">The full documentation&nbsp;is available on the&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/pogoapi.net\/documentation\/\" target=\"_blank\">PoGoAPI.net documentation&nbsp;page<\/a>.<\/p>\n\n\n\n<p id=\"block-4f57b0fd-e581-47c8-8062-60b8863f3393\">If you have any questions about this API or suggestions for other API\u2019s contact me here below or on Twitter!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This post talks about the latest API I have added to PoGoAPI.net, the Mega Evolution Settings API.<\/p>\n","protected":false},"author":1,"featured_media":2729,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"Today I am talking about the latest #PokemonGo #API I have added to PoGoAPI.net the Go Battle Rankings Settings API","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[98],"tags":[226,227,224,223,218,225],"class_list":["post-2720","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-software","tag-api","tag-open-data","tag-pogoapi","tag-pokemon","tag-pokemon-go","tag-pokemon-go-api"],"wppr_data":{"cwp_meta_box_check":"No"},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_go_battle_rankings_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1","jetpack_shortlink":"https:\/\/wp.me\/p2toWX-HS","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":2705,"url":"https:\/\/chewett.co.uk\/blog\/2705\/pokemon-go-api-go-battle-league-rewards-api\/","url_meta":{"origin":2720,"position":0},"title":"Pokemon Go API &#8211; Go Battle League Rewards API","author":"Chewett","date":"November 14, 2020","format":false,"excerpt":"This post talks about the latest API I have added to PoGoAPI.net, the Go Battle League Rewards API. What is the Go Battle League Rewards API When battling in the Go Battle League you are asked to complete a number of matches. After each match, if successful, you can claim\u2026","rel":"","context":"In &quot;Software&quot;","block_context":{"text":"Software","link":"https:\/\/chewett.co.uk\/blog\/category\/software\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_gobattle_league_rewards_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_gobattle_league_rewards_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_gobattle_league_rewards_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_gobattle_league_rewards_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_gobattle_league_rewards_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":2715,"url":"https:\/\/chewett.co.uk\/blog\/2715\/pokemon-go-api-mega-evolution-settings-api\/","url_meta":{"origin":2720,"position":1},"title":"Pokemon Go API &#8211; Mega Evolution Settings API","author":"Chewett","date":"December 12, 2020","format":false,"excerpt":"This post talks about the latest API I have added to PoGoAPI.net, the Mega Evolution Settings API. What is the Mega Evolution Settings API For Pokemon that can Mega Evolve there are a number of game settings that are applied to them. This API lets you obtain the current Mega\u2026","rel":"","context":"In &quot;Software&quot;","block_context":{"text":"Software","link":"https:\/\/chewett.co.uk\/blog\/category\/software\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_mega_evolution_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_mega_evolution_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_mega_evolution_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_mega_evolution_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_mega_evolution_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":2670,"url":"https:\/\/chewett.co.uk\/blog\/2670\/pokemon-go-api-badges-api\/","url_meta":{"origin":2720,"position":2},"title":"Pokemon Go API &#8211; Badges API","author":"Chewett","date":"October 31, 2020","format":false,"excerpt":"This post talks about the latest API I have added to PoGoAPI.net, the Badges API. What is the Badges API While playing Pokemon Go, certain actions are tracked and your progress is logged in the form of badges. When you reach certain milestones you are given a badge to mark\u2026","rel":"","context":"In &quot;Software&quot;","block_context":{"text":"Software","link":"https:\/\/chewett.co.uk\/blog\/category\/software\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_badges_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_badges_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_badges_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_badges_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_badges_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":2717,"url":"https:\/\/chewett.co.uk\/blog\/2717\/pokemon-go-api-friendship-level-settings-api\/","url_meta":{"origin":2720,"position":3},"title":"Pokemon Go API &#8211; Friendship Level Settings API","author":"Chewett","date":"December 26, 2020","format":false,"excerpt":"This post talks about the latest API I have added to PoGoAPI.net, the Friendship Level Settings API. What is the Friendship Level Settings API When playing Pokemon Go you can add other players as friends. The first time you interact each day you will gain a point in your friendship\u2026","rel":"","context":"In &quot;Software&quot;","block_context":{"text":"Software","link":"https:\/\/chewett.co.uk\/blog\/category\/software\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_friendship_level_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_friendship_level_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_friendship_level_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_friendship_level_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_friendship_level_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":2712,"url":"https:\/\/chewett.co.uk\/blog\/2712\/pokemon-go-api-raid-settings-api\/","url_meta":{"origin":2720,"position":4},"title":"Pokemon Go API &#8211; Raid Settings API","author":"Chewett","date":"November 28, 2020","format":false,"excerpt":"This post talks about the latest API I have added to PoGoAPI.net, the Raid Settings API. What is the Raid Settings API In Pokemon Go gyms will sometimes spawn raids which allow multiple players to fight a raid boss. The settings for Pokemon Go raids are encoded into the app\u2026","rel":"","context":"In &quot;Software&quot;","block_context":{"text":"Software","link":"https:\/\/chewett.co.uk\/blog\/category\/software\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_raid_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_raid_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_raid_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_raid_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_raid_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":2461,"url":"https:\/\/chewett.co.uk\/blog\/2461\/pokemon-go-api-pvp-exclusive-pokemon-list\/","url_meta":{"origin":2720,"position":5},"title":"Pokemon Go API \u2013 PVP Exclusive Pokemon List","author":"Chewett","date":"May 23, 2020","format":false,"excerpt":"This post talks about the latest API I have added to PoGoAPI.net, the PVP Exclusive Pokemon list. What are PVP Exclusive Pokemon Some Pokemon and their evolutions are only available in PVP. Currently to get these Pokemon you need to win a number of battles in the PVP league with\u2026","rel":"","context":"In &quot;Software&quot;","block_context":{"text":"Software","link":"https:\/\/chewett.co.uk\/blog\/category\/software\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/05\/pogo_api_posticon_pvpexclusive.jpg?fit=800%2C800&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/05\/pogo_api_posticon_pvpexclusive.jpg?fit=800%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/05\/pogo_api_posticon_pvpexclusive.jpg?fit=800%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/05\/pogo_api_posticon_pvpexclusive.jpg?fit=800%2C800&ssl=1&resize=700%2C400 2x"},"classes":[]}],"_links":{"self":[{"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/posts\/2720","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/comments?post=2720"}],"version-history":[{"count":2,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/posts\/2720\/revisions"}],"predecessor-version":[{"id":2733,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/posts\/2720\/revisions\/2733"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/media\/2729"}],"wp:attachment":[{"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=2720"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=2720"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=2720"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}