πŸ›‘οΈ Antidetect Browser

v2.0 β€” Camoufox + Playwright
0
Total Profiles
0
Active Now
0
Warming Up
0
Ready
0
Groups
Profiles
Tasks
Groups
Webhooks
πŸ“… Schedules
🌐 Proxies
⚑ API / Connect

Submit Task

Task Queue

No tasks yet.
No groups yet.
No webhooks registered.
No schedules yet.
No proxies in pool yet.

πŸ”— Server Info

Base URL
http://127.0.0.1:3800
API Token
β€”
Set ANTIDETECT_TOKEN env var to protect the API.

πŸ€– MCP / Claude AI Connect

Add this to your MCP client config (Claude Desktop, etc.):
{ "mcpServers": { "antidetect": { "command": "npx", "args": ["-y", "mcp-remote", "http://127.0.0.1:3800/mcp"] } } }
Or use the REST API directly with any AI agent (n8n, Zapier, Make, LangChain) β€” bearer token auth supported.

πŸ“‹ API Endpoints Reference

Profiles
GET/api/profiles
POST/api/profilescreate
POST/api/profiles/bulkbulk create
GET/api/profiles/:id
PUT/api/profiles/:idupdate
DEL/api/profiles/:id
POST/api/profiles/:id/launch
POST/api/profiles/:id/close
POST/api/profiles/:id/warmup
POST/api/profiles/:id/sync-geo
POST/api/profiles/:id/check-ip
GET/api/profiles/:id/fingerprint
GET/api/profiles/:id/export
POST/api/profiles/import
POST/api/profiles/import-csv
POST/api/close-all
GET/api/active
GET/api/check-ipserver IP
Tasks / Groups / Webhooks / Proxies
GET/api/tasks?status=&limit=
POST/api/tasks{profileId,type,params}
DEL/api/tasks/:idcancel
GET/api/groups
POST/api/groups
PUT/api/groups/:id
DEL/api/groups/:id
GET/api/webhooks
POST/api/webhooks
DEL/api/webhooks/:id
GET/api/proxies
POST/api/proxies{type,host,port,…}
POST/api/proxies/bulk
POST/api/proxies/:id/test
DEL/api/proxies/:id
Auth: Authorization: Bearer <token> or x-auth-token: <token>

βš™οΈ n8n / Make / Zapier

Use HTTP Request nodes to call any endpoint above.
Set header x-auth-token: YOUR_TOKEN.
For events, register a Webhook at /api/webhooks β€” the server POSTs task.started, task.completed, task.failed to your URL.

πŸ’‘ Quick Examples

Launch a profile:
curl -s -X POST http://127.0.0.1:3800/api/profiles/PROFILE_ID/launch
Submit a TikTok task:
curl -s -X POST http://127.0.0.1:3800/api/tasks \ -H "Content-Type: application/json" \ -d '{"profileId":"ID","type":"tiktok:warmup","params":{"actions":10}}'