Skip to main content

1. Create an account

Sign up at agentcell.live/login. An API key is automatically created for you.

2. Get your API key

Go to Settings to view or create API keys. All API requests require the X-API-Key header.

3. Spawn a phone

curl -X POST https://agentcell.live/api/sessions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{}'

4. Wait for boot

Poll the session status until it’s "ready" (~30 seconds):
curl https://agentcell.live/api/sessions/SESSION_ID \
  -H "X-API-Key: YOUR_API_KEY"

5. Run a task

Send a natural language task. The AI agent drives the phone and returns results:
curl -X POST https://agentcell.live/api/sessions/SESSION_ID/agent/task \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{"task": "Open Settings and turn on Wi-Fi"}'

6. Clean up

curl -X DELETE https://agentcell.live/api/sessions/SESSION_ID \
  -H "X-API-Key: YOUR_API_KEY"
Trial sessions auto-expire after 20 minutes if you’re not subscribed. The instance is cleaned up after 1 hour.