How to find API request/responses

I’m used to creating automation tests for web apps. If I wanted to see if we’re getting the correct responses, I’d just open up the console and check the Network tab. Is there something similar for mobile devices/appium?

it is all depends on your app under test. if they log anything into console you can grab console logs with Appium also.

I can see things being logged in the terminal window where Appium is running, but I’m not sure if they are the API calls of our app or just the API commands from our automation. Is there a way to read/decipher the Appium logs?

e.g. with Android:

Thanks, I’m able to retrieve the appium logs. How do I read them?