Mobile test: Capture http traffic on mobile application opened with Appium

I would like to capture the API requests and the response triggered by the click of buttons in my mobile app.
I currently use robotframework with Appium Library to open my application and interact with it (https://serhatbolsu.github.io/robotframework-appiumlibrary/AppiumLibrary.html#Open%20Application ), but I also would like to check the http traffic.
I can see such keyword exists for browser (https://marketsquare.github.io/robotframework-browser/Browser.html#Wait%20For%20Request), does anything similar exist for mobile applications?

I don’t know any method to capture API calls with Appium but I do know how to do it manually. Download, install and configure this tool called HTTP Toolkit: https://httptoolkit.tech/.
You will need to do it on an emulator without Google Play services or a rooted Android device in order to make it work.

Thank you @zastress for your reply, http toolkit is indeed useful to check API calls “manually”.
In alternative, do you know any way to interface the toolkit itself with python scripts?
Thanks