You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TaskId obtained after sending a request to some captcha endpoint
POST /v1/captcha/turnstile
Body
Type
Description
pageurl
string
Full URL of the page on which you solve turnstile
sitekey
string
The value of the sitekey parameter you found in the site code, it usually doesn't change and you just need to find it once
action
string
Optional
POST /v1/captcha/hcaptcha-img
Body
Type
Description
img
string
Base64 image
task
string
Description of what is to be done in the image
type
string
Grid, canvas or content
POST /v1/captcha/recaptcha-img
Body
Type
Description
img
string
Base64 image
textinstructions
string
The name of the object from the task, preferably in English
sizex
string
Grid size with tasks "9" for 3x3 or "16" for 4x4
POST /v1/captcha/recaptcha-token
Body
Type
Description
pageurl
string
Full URL of the page on which you solve reCAPTCHA V2 (On some sites the recaptcha is in an iframe in this case it is necessary to give the url of this iframe)
sitekey
string
The value of the sitekey parameter you found in the site code, it usually doesn't change and you just need to find it once
invisible
string
Optional: Set "1" if the site has an invisible recaptcha (a captcha that appears only after clicking a button, and immediately in open view)
data_s
string
Optional: The value of the data-s parameter is found on the page. Relevant for ReCaptcha Enterprise
cookies
string
Optional: Your cookies that will be used by MultiSolver to solve the captcha. Format: KEY:Value, for example: KEY1:Value1;KEY2:Value2;
userAgent
string
Optional: MultiSolver will use your userAgent
proxy
string
Optional: MultiSolver will use your proxy
proxytype
string
Optional: Your proxy server type: HTTP, HTTPS, SOCKS4, SOCKS5
version
string
Optional: "v3" - indicates that this is reCAPTCHA V3
enterprise
string
Optional: "1" - indicates that this is reCAPTCHA Enterprise
action
string
‘action’ should be pulled from the page code when solving ReCaptcha v3
POST /v1/captcha/iconupdown
Body
Type
Description
img
string
Base64 image
POST /v1/captcha/iconcaptcha
Note
This endpoint is the only one that does not return a taskId, it will return the result with the coordinates.
constbase_url="https://multisolver-api.vercel.app/v1/captcha";constbody={img: "Base64 img",task: "Please click on all animals similar to the following silhouette",type: "grid",};fetch(base_url+"/hcaptcha-img",{method: "POST",headers: {Authorization: "Bearer KEY_HERE","content-type": "application/json"},body: JSON.stringify(body),});