API ACCESS

Customer 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.

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.

Dashboard-first for now

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.

How to use it

  1. Create an API key in Customer dashboard -> API keys. Copy it immediately; the secret is shown only once.
  2. Send the key from your backend, CI job or monitoring service. Do not expose it in frontend JavaScript.
  3. Create a task, poll task detail, then export JSON, CSV, PDF or ZIP screenshots when results are ready.

Supported endpoints

GET /api/v1/balanceGet balance
GET /api/v1/pricingGet pricing
POST /api/v1/estimateEstimate task cost
POST /api/v1/tasksCreate Android Cloud task
GET /api/v1/tasksList tasks
GET /api/v1/tasks/detail?id=123Get task detail and results
GET /api/v1/tasks/export?task_id=123&format=jsonExport report

Example request

curl -H "X-API-Key: YOUR_API_KEY" \
  https://mobilenode.online/api/v1/balance

Creation payload

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."
    }
  }'

Security rules

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.