Akamai Solver API
Integrate Akamai solving into your automation through one stable REST endpoint. Send the target details and receive a ready-to-use solution without maintaining custom bypass logic.

Akamai, without custom bypass code.
A predictable three-step flow that stays the same even when Akamai changes its protection.
In the simplest case you only send site_url - the solver auto-detects everything else from the page. Pass the script URL or existing cookies yourself for faster solves or cookie refreshes.
Submit the target
Send the page URL and the challenge-specific fields in a single API request.
We handle the challenge
CaptchaSolv routes the task to a specialized solver and tracks it until completion.
Use the solution
Receive the token, headers, cookies, or sensor payload required by your next request.
The same endpoint and response envelope across every supported solver.
{
"api_key": "YOUR_API_KEY",
"type": "Akamai",
"site_url": "https://example.com/page"}{
"errorId": 0,
"status": "ready",
"solvtime": 2.15,
"data": {
"useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)...",
"language": "en-US,en;q=0.9",
"solution": {
"token": "_abck=XXXXX~0~YYYYYY~-1; bm_sz=XXXXX"}
}
}Fields you can send inside the data object of a solve request for this captcha type.
akamai_scriptOptionalAkamai Bot Manager script URL. Auto-detected if omitted; passing it speeds up solving.
challenge_scriptOptionalChallenge script URL. Auto-detected if omitted.
_abckOptionalExisting _abck cookie value, for a cookie refresh instead of a fresh solve.
bm_szOptionalExisting bm_sz cookie value, for a cookie refresh.
pixelOptionalPixel URL. Auto-detected if omitted.
seedOptionalSeed variable from the page. Auto-detected if omitted.
Fields returned in data.solution once the task is solved.
solution.tokenRequiredCookie string containing _abck and the other Akamai cookies.
data.useragentRequiredMust be reused in all subsequent requests - Akamai tracks this fingerprint.
Common questions about integrating this solver correctly.
Yes - our Akamai Bot Manager solver works on any protected site, not just a fixed list of targets. In most cases sending only site_url is enough, since the solver auto-detects the script, seed, and pixel for that specific site.
Stuck trying to bypass Akamai?
Join our Discord and our team will help you get Akamai solving working in your setup - free advice on handling it programmatically, even as the challenge changes over time.
Switch to a different captcha type we support.