Authenticate and make your first API request
https://api.mobileboost.io
Authorization
curl -H "Authorization: Bearer YOUR_API_KEY" \ https://api.mobileboost.io/tests?organisationId=org123
Create a test
curl -X POST https://api.mobileboost.io/tests \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "organisationId": "org123", "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"] }'