Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Authenticate and make your first API request
https://api.mobileboost.io
Authorization
curl -H "Authorization: Bearer YOUR_API_KEY" \ https://api.mobileboost.io/tests
Create a test
curl -X POST https://api.mobileboost.io/tests \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "title": "Login flow", "commands": ["Tap Log in", "Enter credentials", "Verify home screen"] }'
Upload a build
curl -X POST https://api.mobileboost.io/uploadBuild/ \ -H "Content-Type: multipart/form-data" \ -F "build=@app.apk" \ -F "organisation_key=org123" \ -F "platform=android" \ -F "metadata={}"
Execute tests
curl -X POST https://api.mobileboost.io/tests/execute \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "organisationid": "org123", "uploadid": "BUILD_ID_FROM_STEP_2", "tags": ["smoke"] }'