CriminalCap

Server Status

Tasks Active: 0

Total Solves: 0

Total Fails: 0

Solve Speed (SPM): 0

Success Rate: 0.00%

Uptime: 4 days, 16 hours, 33 minutes, 34 seconds

API Documentation

/createTask

Method: POST

Submit a new hCaptcha solving task.

Parameters:

  • access_key: Your access key (required).
  • proxy: The proxy to use for solving (required).
  • site_key: The site key of the hCaptcha (required).
  • text_solve: Textual challenge (required).
  • rq_data: RQ data parameter (required).
  • rq_token: RQ token from Discord challenge response (required).
  • captcha_session_id: Captcha Session ID from Discord challenge response (required).
  • site: The target website URL (required).
  • discord_phone_verify: Discord phone verification parameter (required).
  • hsj: HSJ parameter (required).

Response:

  • error: Boolean indicating if an error occurred.
  • task_id: The ID of the created task, or -1 if an error occurred.

/checkTask

Method: POST

Check the status and retrieve the result of a hCaptcha solving task.

Parameters:

  • access_key: Your access key (required).
  • task_id: The ID of the task to check (required).

Response:

  • error: Boolean indicating if the task resulted in an error.
  • task: {'captcha_key': 'The solved hCaptcha key (if successful).', 'state': "The current state of the task ('processing', 'completed', 'error').", 'solve_time': 'The time taken to solve the hCaptcha in seconds (if completed or errored).', 'captcha_ekey': 'The ekey related to the hCaptcha.'}

/health

Method: GET

Basic health check endpoint.

Parameters:

No parameters.

Response:

  • status: 'OK' if the server is running.