reCaptcha v2 Solver
Solve Google reCaptcha v2 challenges including checkbox and invisible types.
Overview
Solve Google reCaptcha v2 challenges programmatically. Supports both checkbox ("I'm not a robot") and invisible reCaptcha types.
Endpoint
Request
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
sitekey | string | ✅ | reCaptcha site key from the page |
url | string | ✅ | Full URL of the page with captcha |
Finding the Sitekey
The sitekey can be found in the page source:
Or in JavaScript:
Example Request
Response
Success Response
Response Fields
| Field | Type | Description |
|---|---|---|
token | string | The solved reCaptcha token |
Using the Token
After receiving the token, submit it with your form:
Or in a POST request:
Credit Cost
| Result | Credits |
|---|---|
| Success | 1 |
| Error | 0 |
Error Responses
Invalid Sitekey
Solve Failed
Token Validity
reCaptcha tokens typically expire after 2 minutes. Use them immediately after receiving.