import { Hyperbrowser } from '@hyperbrowser/sdk';
const client = new Hyperbrowser({ apiKey: 'your-api-key' });
const result = await client.sessions.evaluateCaptcha('session-id', {
captchaType: 'recaptcha',
iterations: 2
});{
"success": true,
"iterationsRequested": 123,
"iterationsRun": 123,
"solved": true,
"solvedCaptchas": [],
"pages": [
{
"url": "<string>",
"targetId": "<string>",
"iterationsRun": 123,
"solved": true,
"solvedCaptchas": [],
"checkedCaptchas": [],
"captchaSolvedCounts": {},
"lastSolveTime": {}
}
]
}Trigger a bounded CAPTCHA evaluation on an active browser session. Supported CAPTCHA targets are turnstile, cloudflare-challenge, aliexpress, recaptcha, and amazon.
import { Hyperbrowser } from '@hyperbrowser/sdk';
const client = new Hyperbrowser({ apiKey: 'your-api-key' });
const result = await client.sessions.evaluateCaptcha('session-id', {
captchaType: 'recaptcha',
iterations: 2
});{
"success": true,
"iterationsRequested": 123,
"iterationsRun": 123,
"solved": true,
"solvedCaptchas": [],
"pages": [
{
"url": "<string>",
"targetId": "<string>",
"iterationsRun": 123,
"solved": true,
"solvedCaptchas": [],
"checkedCaptchas": [],
"captchaSolvedCounts": {},
"lastSolveTime": {}
}
]
}Documentation Index
Fetch the complete documentation index at: https://hyperbrowser.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
CAPTCHA target to evaluate manually.
turnstile, cloudflare-challenge, aliexpress, recaptcha, amazon CAPTCHA target to evaluate manually.
turnstile, cloudflare-challenge, aliexpress, recaptcha, amazon CAPTCHA target to evaluate manually.
turnstile, cloudflare-challenge, aliexpress, recaptcha, amazon 1 <= x <= 201 <= x <= 20Optional CAPTCHA solver mode. Set to visual to use the visual reCAPTCHA solver.
visual Show child attributes
CAPTCHA evaluation completed
CAPTCHA target to evaluate manually.
turnstile, cloudflare-challenge, aliexpress, recaptcha, amazon CAPTCHA target to evaluate manually.
turnstile, cloudflare-challenge, aliexpress, recaptcha, amazon Show child attributes
Was this page helpful?