{"id":2874,"date":"2021-04-03T13:00:00","date_gmt":"2021-04-03T12:00:00","guid":{"rendered":"https:\/\/chewett.co.uk\/blog\/?p=2874"},"modified":"2021-04-05T17:39:32","modified_gmt":"2021-04-05T16:39:32","slug":"pokemon-go-api-pvp-charged-move-api","status":"publish","type":"post","link":"https:\/\/chewett.co.uk\/blog\/2874\/pokemon-go-api-pvp-charged-move-api\/","title":{"rendered":"Pokemon Go API &#8211; PVP Charged Move API"},"content":{"rendered":"\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"678\" height=\"254\" data-attachment-id=\"2879\" data-permalink=\"https:\/\/chewett.co.uk\/blog\/2874\/pokemon-go-api-pvp-charged-move-api\/pogoapi_pvp_charged_move_header\/\" data-orig-file=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2021\/04\/pogoapi_pvp_charged_move_header.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=\"pogoapi_pvp_charged_move_header\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2021\/04\/pogoapi_pvp_charged_move_header.jpg?fit=300%2C113&amp;ssl=1\" data-large-file=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2021\/04\/pogoapi_pvp_charged_move_header.jpg?fit=678%2C254&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2021\/04\/pogoapi_pvp_charged_move_header.jpg?resize=678%2C254&#038;ssl=1\" alt=\"\" class=\"wp-image-2879\" srcset=\"https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2021\/04\/pogoapi_pvp_charged_move_header.jpg?w=800&amp;ssl=1 800w, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2021\/04\/pogoapi_pvp_charged_move_header.jpg?resize=300%2C113&amp;ssl=1 300w, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2021\/04\/pogoapi_pvp_charged_move_header.jpg?resize=768%2C288&amp;ssl=1 768w, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2021\/04\/pogoapi_pvp_charged_move_header.jpg?resize=50%2C19&amp;ssl=1 50w\" sizes=\"auto, (max-width: 678px) 100vw, 678px\" \/><\/figure><\/div>\n\n\n\n<p>This post talks about the newest Pokemon Go API, the PVP Charged Move API at <a href=\"http:\/\/pogoapi.net\">pogoapi.net<\/a>.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">PVP Charged moves&nbsp;in Pokemon Go<\/h2>\n\n\n\n<p>In Pokemon Go there are two different types of moves, fast moves and charged moves. Charged moves can only be used when the special bar showing the energy is charged up. Once it&nbsp;is&nbsp;charged enough for the move it can be used by pressing the charged button.<\/p>\n\n\n\n<p>These moves are the stronger of the two and will be critical to win or lose PVP battles. Instead of taking time like the non-pvp moves it lists the time taken in &#8220;turns&#8221;.<\/p>\n\n\n\n<p>This API will give the full details of the charged move such as the power of the move,&nbsp;how long it takes to perform, and the energy requirements.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Getting the Charged Move details<\/h2>\n\n\n\n<p>Each Pokemon has a fast and charged move. This API allows you to download the full list of charged moves in the current Pokemon Go game master.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">GET&nbsp;<code>\/api\/v1\/<code>pvp_charged_moves<\/code>.json<\/code><\/h3>\n\n\n\n<p>Note: This API provides the details of charged moves and their PVP related data which are slightly different from the move data used when raiding.<\/p>\n\n\n\n<p>Returns a JSON array where each element is a dict containing the buffs (optional), energy_delta, move_id, name, power, turn_duration, and type.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>buffs &#8211; A list of buffs or debuffs which will be applied once the move is performed (optional)<\/li><li>energy_delta &#8211; The change in energy after performing the move<\/li><li>move_id &#8211; The ID of the move in the game master<\/li><li>name &#8211; The name of the move (un-internationalized)<\/li><li>power &#8211; The strength of the move<\/li><li>turn_duration &#8211; The number of turns it takes to make the move (PVP works on a turn based system)<\/li><li>type &#8211; The type of the move<\/li><\/ul>\n\n\n\n<p>The buffs key is a dict with activation_chance and optionally the following keys target_defense_stat_stage_change, attacker_attack_stat_stage_change, target_attack_stat_stage_change, or attacker_defense_stat_stage_change.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>activation_chance &#8211; The chance that the buff\/debuff will activate every time the move is used. This goes from 0 to 1 where 0 never happens and 1 happens on every attack<\/li><li>target_attack_stat_stage_change &#8211; The amount of points to modify the target&#8217;s attack stage<\/li><li>target_defense_stat_stage_change &#8211; The amount of points to modify the targets defense stage<\/li><li>attacker_attack_stat_stage_change &#8211; The amount of points to modify the attackers attack stage<\/li><li>attacker_defense_stat_stage_change &#8211; The amount of points to modify the attackers defense stage<\/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&#x5B;\n  {\n        &quot;buffs&quot;: {\n            &quot;activation_chance&quot;: 0.3,\n            &quot;target_defense_stat_stage_change&quot;: -1\n        },\n        &quot;energy_delta&quot;: -60,\n        &quot;move_id&quot;: 49,\n        &quot;name&quot;: &quot;Bug Buzz&quot;,\n        &quot;power&quot;: 90,\n        &quot;turn_duration&quot;: 1,\n        &quot;type&quot;: &quot;Bug&quot;\n    },\n    {\n        &quot;energy_delta&quot;: -35,\n        &quot;move_id&quot;: 50,\n        &quot;name&quot;: &quot;Poison Fang&quot;,\n        &quot;power&quot;: 40,\n        &quot;turn_duration&quot;: 1,\n        &quot;type&quot;: &quot;Poison&quot;\n    },\n    {\n        &quot;buffs&quot;: {\n            &quot;activation_chance&quot;: 0.125,\n            &quot;attacker_attack_stat_stage_change&quot;: 2\n        },\n        &quot;energy_delta&quot;: -35,\n        &quot;move_id&quot;: 51,\n        &quot;name&quot;: &quot;Night Slash&quot;,\n        &quot;power&quot;: 50,\n        &quot;turn_duration&quot;: 1,\n        &quot;type&quot;: &quot;Dark&quot;\n    }, ...\n]\n<\/pre><\/div>\n\n\n<p>The full documentation&nbsp;is available on the&nbsp;<a href=\"https:\/\/pogoapi.net\/documentation\/\" target=\"_blank\" rel=\"noreferrer noopener\">PoGoAPI.net documentation&nbsp;page<\/a>.<\/p>\n\n\n\n<p>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 newest Pokemon Go API, the PVP Charged Move API at pogoapi.net.<\/p>\n","protected":false},"author":1,"featured_media":2877,"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 on PoGoAPI.net the PVP Charged Move 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-2874","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\/2021\/04\/pogoapi_pvp_charged_move_posticon_OUTPUT.png?fit=1200%2C628&ssl=1","jetpack_shortlink":"https:\/\/wp.me\/p2toWX-Km","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":2882,"url":"https:\/\/chewett.co.uk\/blog\/2882\/pokemon-go-api-pvp-fast-move-api\/","url_meta":{"origin":2874,"position":0},"title":"Pokemon Go API \u2013 PVP Fast Move API","author":"Chewett","date":"April 17, 2021","format":false,"excerpt":"This post talks about the newest Pokemon Go API, the PVP Fast Move API at pogoapi.net. PVP Fast moves\u00a0in Pokemon Go In Pokemon Go there are two different types of moves, fast moves and charged moves. Fast moves\u00a0require no time to charge and will be performed each time you tap\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\/2021\/04\/pogoapi_pvp_fast_move_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\/2021\/04\/pogoapi_pvp_fast_move_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2021\/04\/pogoapi_pvp_fast_move_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2021\/04\/pogoapi_pvp_fast_move_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2021\/04\/pogoapi_pvp_fast_move_posticon_OUTPUT.png?fit=1200%2C628&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":1556,"url":"https:\/\/chewett.co.uk\/blog\/1556\/pokemon-go-api-charged-move-api\/","url_meta":{"origin":2874,"position":1},"title":"Pokemon Go API &#8211; Charged Move API","author":"Chewett","date":"November 7, 2018","format":false,"excerpt":"This post talks about the newest Pokemon Go API, the Charged Move API at pogoapi.net. Charged moves\u00a0in Pokemon Go In Pokemon Go there are two different types of moves, fast moves and charged moves. Charged moves can only be used when the special bar showing the energy is charged up.\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\/09\/pogo_api_charged_move-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\/09\/pogo_api_charged_move-1.jpg?fit=800%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2018\/09\/pogo_api_charged_move-1.jpg?fit=800%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2018\/09\/pogo_api_charged_move-1.jpg?fit=800%2C800&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":1555,"url":"https:\/\/chewett.co.uk\/blog\/1555\/pokemon-go-api-fast-move-api\/","url_meta":{"origin":2874,"position":2},"title":"Pokemon Go API &#8211; Fast Move API","author":"Chewett","date":"October 10, 2018","format":false,"excerpt":"This post talks about the newest Pokemon Go API, the Fast Move API at pogoapi.net. Fast moves\u00a0in Pokemon Go In Pokemon Go there are two different types of moves, fast moves and charged moves. Fast moves\u00a0require no time to charge the special bar and will be performed each time you\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\/09\/pogo_api_fast_move-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\/09\/pogo_api_fast_move-1.jpg?fit=800%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2018\/09\/pogo_api_fast_move-1.jpg?fit=800%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2018\/09\/pogo_api_fast_move-1.jpg?fit=800%2C800&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":2578,"url":"https:\/\/chewett.co.uk\/blog\/2578\/pokemon-go-api-community-day-api\/","url_meta":{"origin":2874,"position":3},"title":"Pokemon Go API &#8211; Community Day API","author":"Chewett","date":"August 8, 2020","format":false,"excerpt":"This post talks about the latest API I have added to PoGoAPI.net, the Community Day API. What is the Community Day API Typically each month Niantic run a Pokemon Go Community day which is designed to encourage trainers to come and play Pokemon Go together. These days typically highlight one\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\/07\/pogo_api_community_day-1.jpg?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\/07\/pogo_api_community_day-1.jpg?fit=1200%2C628&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/07\/pogo_api_community_day-1.jpg?fit=1200%2C628&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/07\/pogo_api_community_day-1.jpg?fit=1200%2C628&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/07\/pogo_api_community_day-1.jpg?fit=1200%2C628&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":2392,"url":"https:\/\/chewett.co.uk\/blog\/2392\/pokemon-go-api-current-pokemon-moves-api\/","url_meta":{"origin":2874,"position":4},"title":"Pokemon Go API \u2013 Current Pokemon moves API","author":"Chewett","date":"January 18, 2020","format":false,"excerpt":"This post talks about the latest API I have added to PoGoAPI.net, the Current Pokemon moves API. What is the Current Pokemon moves When a Pokemon is caught, evolved, or hatched the moves are randomly chosen from a pool of potential moves. These moves change from time to time as\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\/01\/pogo_api_posticon_currentmoves.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\/01\/pogo_api_posticon_currentmoves.jpg?fit=800%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/01\/pogo_api_posticon_currentmoves.jpg?fit=800%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/chewett.co.uk\/blog\/wp-content\/uploads\/2020\/01\/pogo_api_posticon_currentmoves.jpg?fit=800%2C800&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":2461,"url":"https:\/\/chewett.co.uk\/blog\/2461\/pokemon-go-api-pvp-exclusive-pokemon-list\/","url_meta":{"origin":2874,"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\/2874","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=2874"}],"version-history":[{"count":3,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/posts\/2874\/revisions"}],"predecessor-version":[{"id":2885,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/posts\/2874\/revisions\/2885"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/media\/2877"}],"wp:attachment":[{"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=2874"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=2874"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/chewett.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=2874"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}