ComplexImageTask Funcaptcha
The object contains data about the FunCaptcha solving.
Object structure
Parameter | Type | Required | Possible values | Description |
---|---|---|---|---|
type | String | yes | ComplexImageTask | Specifies the type of task object. |
class | String | yes | funcaptcha | Specifies the class of task object. |
imageUrls | Array | yes (if imagesBase64 is not filled) | [ “https://i.postimg.cc/s2ZDrHXy/fc1.jpg”, … ] | Single image (in an array). |
imagesBase64 | Array | yes (if imageUrls is not filled) | [ “/9j/4AAQSkZJRgABAQEAAAAAAAD…”, … ] | Single image in base64 format (in an array). |
metadata.Task | String | yes | Pick the image that is the correct way up and others | Task text (in English). |
userAgent | String | no | Pass only the actual UA from Windows OS. Now this is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 | The browser User Agent used when uploading images if links were passed to imageUrls. You should use a modern browser signature or Google will return an error asking you to update your browser. |
websiteURL | String | no | "https://www.example.com/i/flow/signup" | URL of the page where the captcha is solved. |
Request example
Method
https://api.brocapgpt.com/createTask
{
"clientKey":"dce6bcbb1a728ea8d871de6d169a2057",
"task": {
"type": "ComplexImageTask",
"class": "funcaptcha",
"imageUrls":[ "https://i.postimg.cc/s2ZDrHXy/fc1.jpg" ],
"metadata": {
"Task": "Pick the image that is the correct way up"
},
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36."
}
}
Response example
{
"errorId":0,
"taskId":407533072
}
Getting the results
Method
https://api.brocapgpt.com/getTaskResult
Use the getTaskResult method to get the captcha solution. Depending on the system load, you will receive a response after a time ranging from 300ms to 6s.
Property | Type | Description |
---|---|---|
answer | Array | List in boolean values, true - means that you need to click on the image corresponding to this position. |
Example:
{
"errorId":0,
"status":"ready",
"solution": {
"answer": [ false, false, false, false, true, false ]
}
}
Pricing
Cost | Cost per 1000 images, $ |
---|---|
Funcaptcha | 0,15 |