doc.captchacaptcha.com
Open in
urlscan Pro
54.162.203.88
Public Scan
URL:
https://doc.captchacaptcha.com/
Submission Tags: phishingrod
Submission: On September 25 via api from DE — Scanned from DE
Submission Tags: phishingrod
Submission: On September 25 via api from DE — Scanned from DE
Form analysis
0 forms found in the DOMText Content
* Body * Headers (5) Public Documentation Settings ENVIRONMENT New Environment LAYOUT Double Column LANGUAGE cURL - cURL Captcha Capatcha API Introduction POST Captcha Solver API CAPTCHA CAPATCHA API A modern API to solve Text CAPTCHA, Rotate CAPTCHA, Puzzle CAPTCHA and Math CAPTCHA. More to come! POSTCAPTCHA SOLVER API https://api.captchacaptcha.com/api/v1/ DESCRIPTION The API will solve following captacha types: Captcha Type Normal(Text) CAPTCHA Rotate CAPTCHA Puzzle CAPTCHA Math CAPTCHA We will support more CAPTCHA types in the future, stay tuned. HOW TO USE API: View More KEY Required? Data Type Description api_key Yes string Get your own api_key from administrator panel. captcha_type Yes string Specify captcha type you want to solve. Normal CAPTCHA == 1000 Rotate CAPTCHA == 2000 Puzzle CAPTCHA == 4000 Math CAPTCHA == 5000 image_base64 Yes string Target captcha image base64 string. sub_image_base64 No string You need to upload secondary image for Rotate CAPTCHA HOW TO SOLVE TEXT(NORMAL) CAPTCHA captcha_type = 1000 image_base64 = Target captcha image base64 string Sample CAPTCHA image Sample CAPTCHA image base64 string https://www.captchacaptcha.com/wp-content/uploads/2023/01/1000_image_base64.txt Sample response. Response time < 1.0 sec Plain Text { "code": 0, "data": { "captcha_id": "1000-4PAjrE7wBX9GiOy7Z9SJA", "recognition": "KABBSU" }, "message": "ok" } -------------------------------------------------------------------------------- HOW TO SOLVE ROTATE CAPTCHA captcha_type = 2000 image_base64 = Target captcha image base64 string sub_image_base64 = center image base64 string Note: you need to upload 2 images for Rotate CAPTCHA Sample Rotate CAPTCHA image Sample Rotate CAPTCHA image base64 string: image_base64: https://www.captchacaptcha.com/wp-content/uploads/2023/01/2000_image_base64.txt sub_image_base64: https://www.captchacaptcha.com/wp-content/uploads/2023/01/2000_sub_image_base64.txt Sample response. Response time < 5.0 sec API will return degree of rotation in numeric format. In below example the main image(image_base64) needs to rotate 100 degree anticlockwise and the sub image(sub_image_base64) need to rotate 100 degree clockwise. Plain Text { "code": 0, "data": { "captcha_id": "2000-Sv2Y-A7Bv6W9qzCOxFaJf", "recognition": "100" }, "message": "ok" } -------------------------------------------------------------------------------- HOW TO SOLVE PUZZLE CAPTCHA captcha_type = 4000 image_base64 = Target captcha image base64 string Sample Puzzle CAPTCHA image Sample Puzzle CAPTCHA image base64 string: https://www.captchacaptcha.com/wp-content/uploads/2023/01/4000_image_base64.txt Sample response. Response time < 1.0 sec API will return target coord in the format of (x1, y1, x2, y2) as sample image above. Plain Text { "code": 0, "data": { "captcha_id": "4000-V45Y5TcMK21NBGMtojHRP", "recognition": "234,90,303,161" }, "message": "ok" } -------------------------------------------------------------------------------- HOW TO SOLVE MATH CAPTCHA captcha_type = 5000 image_base64 = Target captcha image base64 string Sample Math CAPTCHA image Sample Math CAPTCHA image base64 string: https://www.captchacaptcha.com/wp-content/uploads/2023/01/5000_image_base64.txt Sample response. Response time < 1.0 sec json { "code": 0, "data": { "captcha_id": "5000-bB46-LrvOzBFAFMTJnWx5", "recognition": "32" }, "message": "ok" } -------------------------------------------------------------------------------- ERROR CODE: View More Plain Text code 0: Success code 2: Timeout code 3: Missing parameters code 4: Failed to convert base64 string code 5: Invalid captcha_type code 6: Invalid api_key code 101: Failed to read image from OSS code 102: Failed to convert image code 103: OCR internal error 401 code 104: OCR internal error 402 code 105: captcha_type not supported code 106: Failed to convert SVG to PNG code 107: Math CAPTCHA: Math failed code 108: Puzzle CAPTCHA failed 401 code 109: Puzzle CAPTCHA failed 401 code 110: Rotate CAPTCHA: failed to read sub image from OSS code 111: Rotate CAPTCHA: failed to convert SVG to PNG code 112: Rotate CAPTCHA: failed to covert RGB code 113: Rotate CAPTCHA: Internal error 401 code 114: Rotate CATPCHA: Internal error 402 GETTING STARTED QUICKLY: We have 2 options to help you get started quickly. Option 1: Testing with our testing API key. Please replace {{sample_image_base64}} with your own testing image based64 string. bash curl --location --request POST 'https://captchacaptcha.com/api/v1/' \ --form 'api_key="d5ab5719b235b74b00e895eb9c966112"' \ --form 'captcha_type="1000"' \ --form 'image_base64="{{sample_image_base64}}"' Option 2: Run in Postman. Please feel free to contact us if you need help. hello@captchacaptcha.com Bodyformdata api_key {{api_key_value}} captcha_type {{captcha_type_value}} image_base64 {{sample_image_base64}} Example Request Captcha Solver API curl curl --location 'https://api.captchacaptcha.com/api/v1/' \ --form 'api_key="{{api_key_value}}"' \ --form 'captcha_type="{{captcha_type_value}}"' \ --form 'image_base64="{{sample_image_base64}}"' 200 OK Example Response * Body * Headers (5) json { "code": 0, "data": { "captcha_id": "1000-rBN8dCMX8PMPqJNQHomsh", "recognition": "878PH3" }, "message": "ok" } Server nginx/1.18.0 (Ubuntu) Date Sun, 04 Dec 2022 06:05:09 GMT Content-Type application/json Content-Length 99 Connection keep-alive