Is there an API to fetch the list of available emulators/simulators in TestMu AI?

Does TestMu AI have an API using which we can fetch the list of emulators or simulators available on the platform?

Hey @mrinalini_singh

Thanks for reaching out to us,

Yes, you can use the public API that provides the list of emulators & simulators available on TestMu AI. It provides output in the JSON format.

curl 'https://mobile-api.lambdatest.com/mobile-automation/api/v1/capability/generator?isVirtualDevice=true' \
  -H 'accept: application/json' \
  -H 'accept-language: en-US,en;q=0.9' \
  -H 'content-type: application/json' \
  -H 'origin: https://www.lambdatest.com' \
  -H 'priority: u=1, i' \
  -H 'referer: https://www.lambdatest.com/capabilities-generator/' \
  -H 'sec-ch-ua: "Chromium";v="146", "Not-A.Brand";v="24", "Google Chrome";v="146"' \
  -H 'sec-ch-ua-mobile: ?0' \
  -H 'sec-ch-ua-platform: "macOS"' \
  -H 'sec-fetch-dest: empty' \
  -H 'sec-fetch-mode: cors' \
  -H 'sec-fetch-site: same-site' \
  -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36'

In order to pick & choose any particular emulator/simulator, head over to TestMu AI Capabilities Generator and choose the one that meets your requirements.

Ensure that isRealMobile is set to false in the mobile capabilities.

Hope this was helpful :grinning_face: