How to check http request and response in android mobile app using postman

how to track network request in mobile app …I am working on mobile app,I want to check http request and response in android app using postman and in postman how to connect
android app to postman…

My mobile network ip , laptop ip both are different ip adress …

Please help me anyone

Postman can’t directly “attach” to your app, but you can route traffic through it using a proxy.
Put your phone and laptop on the same Wi-Fi, use Postman/Charles/Fiddler proxy, and set the proxy IP on your Android.Then you’ll be able to see the requests and responses your app is making.

1 Like

Hi Bhavya,

I faced the same situation when trying to inspect HTTP requests from my Android app. The easiest way is to put your phone and laptop on the same Wi-Fi network, then use a proxy tool like Postman’s built-in proxy, Charles, or Fiddler.

Once you configure the proxy IP on your Android device, all your app’s HTTP requests and responses can be captured on your laptop. Make sure your firewall allows the connection, and double-check that both devices are on the exact same network.

It’s a bit tricky at first, but once set up, you can see exactly what your app is sending and receiving — super useful for debugging API issues!