Current API status
Ready now
- API key generation in the customer dashboard.
- Server authentication with X-API-Key or Bearer token.
- Balance, pricing, estimate, task creation, task list, task detail and report export endpoints.
API ACCESS
Automate Android Cloud tasks from your own backend
Use API keys to create website monitoring, screenshot, performance, regional availability and scheduled monitoring tasks, then pull status and reports without opening the dashboard.
Human Review, manual APK uploads, disputes, chat, payments and admin review remain dashboard-first workflows.
API keys are for developers and integrations. If you only use the dashboard, you do not need them.
curl -H "X-API-Key: YOUR_API_KEY" \
https://mobilenode.online/api/v1/balance
curl -X POST https://mobilenode.online/api/v1/tasks \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"title": "Homepage Android check",
"task_type": "WEBSITE_CHECK_TASK",
"chunks_count": 3,
"cost_credits": 0.15,
"input_data": {
"url": "https://example.com",
"expected_status": 200,
"countries": ["AM", "DE"],
"android_versions": ["14", "15", "16"],
"network_type": "any",
"timeout_seconds": 45,
"capture_screenshot": true,
"description": "Check homepage availability and mobile rendering."
}
}'
Use the API only for legal QA, monitoring and research tasks. Internal/private URLs, fake clicks, captcha solving, spam, account automation and hidden installs are blocked.