Arkose Labs bot protection
Community-contributed integration
This integration is community-maintained. Reference: ory/integrates/fraud-bot-protection/arkose-labs.
Arkose Labs is a bot-detection and fraud-prevention platform with adaptive enforcement challenges. It runs invisible risk scoring and escalates to interactive puzzles only when warranted.
How it works
- Registration / login UI embeds the Arkose Labs client SDK; the SDK runs scoring + an optional challenge and returns a one-time token.
- Form submits to Ory's flow with the token.
- An Ory Action on
registration.before/login.before(withcan_interrupt: true) calls your handler. - Handler POSTs to Arkose
https://customer-api.arkoselabs.com/api/v4/verify/with the token + private key; checkssolved == true. - On fail, handler returns an error and the Ory flow blocks.
Notable
- Two Arkose keys: Public Key (client SDK) and Private Key (server verify). Never expose Private.
- Arkose tokens are one-time use — retrying verify with the same token returns
not_valid. - Use a per-flow token; don't reuse across registration and login.
