{"id":2712,"date":"2020-11-28T13:00:00","date_gmt":"2020-11-28T13:00:00","guid":{"rendered":"https:\/\/chewett.co.uk\/blog\/?p=2712"},"modified":"2020-11-01T16:40:05","modified_gmt":"2020-11-01T16:40:05","slug":"pokemon-go-api-raid-settings-api","status":"publish","type":"post","link":"https:\/\/chewett.co.uk\/blog\/2712\/pokemon-go-api-raid-settings-api\/","title":{"rendered":"Pokemon Go API &#8211; Raid 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=\"2725\" data-permalink=\"https:\/\/chewett.co.uk\/blog\/2712\/pokemon-go-api-raid-settings-api\/pogo_api_header_raid_settings\/\" data-orig-file=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_raid_settings.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_raid_settings\" 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_raid_settings.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_raid_settings.jpg?fit=678%2C254&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_raid_settings.jpg?resize=678%2C254&#038;ssl=1\" alt=\"\" class=\"wp-image-2725\" srcset=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_raid_settings.jpg?w=800&amp;ssl=1 800w, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_raid_settings.jpg?resize=300%2C113&amp;ssl=1 300w, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_raid_settings.jpg?resize=768%2C288&amp;ssl=1 768w, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/10\/pogo_api_header_raid_settings.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 Raid Settings API.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">What is the Raid Settings API<\/h2>\n\n\n\n<p>In Pokemon Go gyms will sometimes spawn raids which allow multiple players to fight a raid boss.<\/p>\n\n\n\n<p>The settings for Pokemon Go raids are encoded into the app and this API provides a simple view of the current raid settings.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Getting the Raid Settings data<\/h2>\n\n\n\n<p>This API returns the game master settings for Pokemon Go raids which dictate some important features of raids.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">GET <code>\/api\/v1\/<code>raid_settings<\/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>friend_invite_cooldown_duration &#8211; The time in milliseconds you will need to wait between inviting more people to the raid lobby<\/li><li>friend_invite_cutoff_time &#8211; The time in seconds before the raid where you will not be able to invite people<\/li><li>friends_can_be_invited_in_person &#8211; Boolean indicating whether friends can be invited when raiding in person<\/li><li>friends_can_be_invited_remotely &#8211; Boolean indicating whether friends can be invited when raiding with a remote pass (not invited)<\/li><li>max_friend_invites_per_invite &#8211; The maximum number of friends you can invite with one invite selection<\/li><li>max_friend_invites_per_raid &#8211; The maximum number of friends a player can invite per raid<\/li><li>max_players_per_raid &#8211; The maximum number of players that can be in a raid at once<\/li><li>max_remote_players_per_raid &#8211; The maximum number of players who can be in a raid remotely at once<\/li><li>max_remote_raid_passes &#8211; The maximum number of remote raid passes someone can hold before being banned from buying any more (note it is currently possible to hold more if you buy a number when you are under the limit)<\/li><li>min_player_level_for_remote_raids &#8211; The minimum level to access remote raiding in Pokemon Go<\/li><li>remote_damage_modifier &#8211; A decimal representing the damage modifier applied to remote raiders. It has been announced that remote raiders will in the future do less damage than someone in person<\/li><li>remote_raids_enabled &#8211; Boolean indicating whether remote raiding is currently available<\/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;friend_invite_cooldown_duration&quot;: 30000,\n    &quot;friend_invite_cutoff_time&quot;: 20,\n    &quot;friends_can_be_invited_in_person&quot;: true,\n    &quot;friends_can_be_invited_remotely&quot;: true,\n    &quot;max_friend_invites_per_invite&quot;: 5,\n    &quot;max_number_of_friend_invites&quot;: 5,\n    &quot;max_players_per_raid&quot;: 20,\n    &quot;max_remote_players_per_raid&quot;: 10,\n    &quot;max_remote_raid_passes&quot;: 3,\n    &quot;min_player_level_for_remote_raids&quot;: 5,\n    &quot;remote_damage_modifier&quot;: 1.0,\n    &quot;remote_raids_enabled&quot;: true\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 Raid Settings API.<\/p>\n","protected":false},"author":1,"featured_media":2726,"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 Raid 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-2712","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_raid_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1","jetpack_shortlink":"https:\/\/wp.me\/p2toWX-HK","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":2715,"url":"https:\/\/chewett.co.uk\/blog\/2715\/pokemon-go-api-mega-evolution-settings-api\/","url_meta":{"origin":2712,"position":0},"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":2717,"url":"https:\/\/chewett.co.uk\/blog\/2717\/pokemon-go-api-friendship-level-settings-api\/","url_meta":{"origin":2712,"position":1},"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":2720,"url":"https:\/\/chewett.co.uk\/blog\/2720\/pokemon-go-api-go-battle-rankings-settings-api\/","url_meta":{"origin":2712,"position":2},"title":"Pokemon Go API &#8211; Go Battle Rankings Settings API","author":"Chewett","date":"January 9, 2021","format":false,"excerpt":"This post talks about the latest API I have added to PoGoAPI.net, the Mega Evolution Settings API. What are the Go Battle Rankings Settings API 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\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_go_battle_rankings_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_go_battle_rankings_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_go_battle_rankings_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_go_battle_rankings_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_go_battle_rankings_settings_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":1091,"url":"https:\/\/chewett.co.uk\/blog\/1091\/pokemon-go-api-raid-exclusive-pokemon-list\/","url_meta":{"origin":2712,"position":3},"title":"Pokemon Go API &#8211; Raid Exclusive Pokemon List","author":"Chewett","date":"April 7, 2018","format":false,"excerpt":"This post talks about the latest API I have added to PoGoAPI.net, the Raid Exclusive Pokemon list. What is the Raid Exclusive Pokemon List Some Pokemon in Pokemon Go are Raid Exclusive and can only be caught by fighting raids. This means there is no other way to obtain them\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\/2018\/03\/pogo_api_raid_exclusive_pokemon.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\/2018\/03\/pogo_api_raid_exclusive_pokemon.jpg?fit=800%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2018\/03\/pogo_api_raid_exclusive_pokemon.jpg?fit=800%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2018\/03\/pogo_api_raid_exclusive_pokemon.jpg?fit=800%2C800&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":2315,"url":"https:\/\/chewett.co.uk\/blog\/2315\/pokemon-go-api-adding-alolan-shinies\/","url_meta":{"origin":2712,"position":4},"title":"Pokemon Go API &#8211; Adding Alolan Shinies","author":"Chewett","date":"August 10, 2019","format":false,"excerpt":"This post talks about the new field of the Shiny API of PoGoAPI.net. Alolan Shinies Now it is possible to find shiny variants of the released Alolan Pokemon. These Pokemon can be found in the wild, from 7k eggs and in raids. These shiny pokemon have similar rates to normal\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\/2019\/08\/pogo_api_shiny_alolan.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\/2019\/08\/pogo_api_shiny_alolan.jpg?fit=800%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2019\/08\/pogo_api_shiny_alolan.jpg?fit=800%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2019\/08\/pogo_api_shiny_alolan.jpg?fit=800%2C800&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":1805,"url":"https:\/\/chewett.co.uk\/blog\/1805\/pokemon-go-api-type-effectiveness-api\/","url_meta":{"origin":2712,"position":5},"title":"Pokemon Go API \u2013 Type Effectiveness API","author":"Chewett","date":"February 6, 2019","format":false,"excerpt":"This post talks about the newest Pokemon Go API, the Type Effectiveness API at\u00a0pogoapi.net. Pokemon Type Effectiveness When a Pokemon attacks, a multiplier is applied based on the attacker and defender types. This type effectiveness is very important to help deal the most damage as possible in raids and pvp.\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\/2018\/12\/pogo_api_type_effectiveness-1.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\/2018\/12\/pogo_api_type_effectiveness-1.jpg?fit=800%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2018\/12\/pogo_api_type_effectiveness-1.jpg?fit=800%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2018\/12\/pogo_api_type_effectiveness-1.jpg?fit=800%2C800&ssl=1&resize=700%2C400 2x"},"classes":[]}],"_links":{"self":[{"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/posts\/2712","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=2712"}],"version-history":[{"count":2,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/posts\/2712\/revisions"}],"predecessor-version":[{"id":2730,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/posts\/2712\/revisions\/2730"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/media\/2726"}],"wp:attachment":[{"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=2712"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=2712"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=2712"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}