Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 7 hours ago. Improve this question In my wordres site, I am using wpforms. I have an action hooked up which is called after successful submission of my form. add_action( 'wpforms_process_complete', 'wpf_dev_process_complete', 10, 4 ); This action triggers an API Call using wp_remote_get plugin like $response = wp_remote_get( $api_url ); Now I would like to see this API GET request being fired in browser network tab or in a similar network sniffing tool fidler, but I dont see any such api call. Howeve API is being called as I can see in api logs. I have already ensured to select 'ALL' traffic in network tab. I tried to see it in fiddler but with no success, Apparenlt fiddler also donot capture it. To add on top of this, Any attempt of adding console.log in this action, results in 'invalid json Unexpected token' error. dont know why? Look like it is trying to submit console.log to server. So all in all I dont know why to see the api call request with parameter value and its result in browser network tab for better debugging.