POST
/
api
/
bot-accounts
/
login
Login Account
curl --request POST \
  --url https://api.example.com/api/bot-accounts/login

Request Body

{
  "accountIds": ["acc-abc12345"],
  "proxyId": "proxy-def67890"
}
FieldTypeRequiredDescription
accountIdsstring[]YesAccount IDs to login
proxyIdstringNoSpecific proxy to use (falls back to any active proxy)

Response

{
  "results": [
    {
      "accountId": "acc-abc12345",
      "username": "botuser1",
      "status": "logged_in",
      "cookiesExpiresAt": "2026-04-01T12:00:00.000Z"
    }
  ]
}
Login cookies are valid for 24 hours.
A working proxy is required for login. Direct connections are not supported.