API Documentation
Integrate Arkham Solver's powerful captcha solving capabilities directly into your applications
On This Page
Getting Started
Arkham Solver provides a simple and powerful API for solving hCaptcha challenges. With our service, you can automate captcha solving in your applications with high accuracy and speed.
Quick Start Guide
- Register for an account (or log in if you already have one)
- Get your API key from your dashboard
- Install the HTTP client for your programming language
- Make a request to the API to solve a captcha
- Implement the solution in your workflow
Currently, Arkham Solver specializes in hCaptcha solving. More captcha types will be added in future updates.
Authentication
All API requests require authentication using your API key. You can find your unique API key in your dashboard.
How to Authenticate
Include your API key in every request as the clientKey
parameter in the JSON payload.
"clientKey": "YOUR_API_KEY"
Security Warning
Never expose your API key in client-side code or public repositories. Always make API requests from your server-side code and keep your API key secure.
If you suspect your API key has been compromised, you can regenerate it from your dashboard.
Points-Based System
Arkham Solver uses a points-based system. Each hCaptcha solution costs 40 points
API Endpoints
Arkham Solver provides three main API endpoints for captcha solving. All endpoints use POST requests with JSON payloads and return JSON responses.
Create Task
Creates a new hCaptcha solving task. This is the first step in the captcha solving process.
Endpoint URL
Request Body
{ "clientKey": "YOUR_API_KEY", "task": { "type": "HCaptchaTaskProxyless", "websiteURL": "https://website-with-captcha.com", "websiteKey": "a5f74b19-9e45-40e0-b45d-47ff91b7a6c2", "isInvisible": false } }
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
clientKey | String | Yes | Your API key |
task.type | String | Yes | Always use "HCaptchaTaskProxyless" for hCaptcha |
task.websiteURL | String | Yes | The full URL of the page with the captcha |
task.websiteKey | String | Yes | The hCaptcha site key |
task.isInvisible | Boolean | No | Set to true if it's an invisible hCaptcha |
Response
{ "errorId": 0, "errorCode": "", "errorDescription": "", "taskId": "12345678-1234-5678-1234-567812345678" }
The taskId
is used to retrieve the result
once the captcha is solved.
Get Task Result
Retrieves the result of a previously created captcha solving task.
Endpoint URL
Request Body
{ "clientKey": "YOUR_API_KEY", "taskId": "12345678-1234-5678-1234-567812345678" }
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
clientKey | String | Yes | Your API key |
taskId | String | Yes | The ID received from createTask |
Processing Response
{ "errorId": 0, "status": "processing" }
Completed Response
{ "errorId": 0, "status": "ready", "solution": { "gRecaptchaResponse": "P1_eyJ0eXAiOiJ..." } }
Polling for Results
You should poll this endpoint every 3-5 seconds until you receive a response with
status: "ready"
. The average solving
time is approximately 15 seconds, but it may vary.
Get Balance
Retrieves your current account balance. This endpoint is useful for checking if you have enough points before creating a task.
Endpoint URL
Request Body
{ "clientKey": "YOUR_API_KEY" }
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
clientKey | String | Yes | Your API key |
Response
{ "errorId": 0, "balance": 125.0, "currency": "POINTS" }
Error Codes
When an error occurs, the API returns a response with a non-zero errorId
and additional information about the error.
Error ID | Error Code | Description | Solution |
---|---|---|---|
1 | ERROR_KEY_DOES_NOT_EXIST | The provided API key does not exist | Check your API key or get a new one from your dashboard |
1 | ERROR_ZERO_BALANCE | Insufficient balance to complete the request | Top up your account balance |
1 | ERROR_TASK_NOT_FOUND | The specified task was not found | Check the taskId or create a new task |
1 | ERROR_INVALID_TASK_DATA | The task data is invalid or incomplete | Check the task parameters and try again |
Code Examples
Python Example
import requests import time API_KEY = "YOUR_API_KEY" BASE_URL = "https://arkham-solver.com/api" def solve_hcaptcha(website_url, website_key, is_invisible=False): """ Solve an hCaptcha challenge using Arkham Solver API Args: website_url (str): The URL of the page with the captcha website_key (str): The hCaptcha site key is_invisible (bool): Whether it's an invisible hCaptcha Returns: str: The solved captcha token """ # Step 1: Create task create_task_payload = { "clientKey": API_KEY, "task": { "type": "HCaptchaTaskProxyless", "websiteURL": website_url, "websiteKey": website_key, "isInvisible": is_invisible } } response = requests.post(f"{BASE_URL}/createTask", json=create_task_payload) task_result = response.json() if task_result.get("errorId") != 0: raise Exception(f"Error creating task: {task_result}") task_id = task_result["taskId"] print(f"Task created: {task_id}") # Step 2: Get task result (with polling) get_result_payload = { "clientKey": API_KEY, "taskId": task_id } print("Waiting for solution...") while True: response = requests.post(f"{BASE_URL}/getTaskResult", json=get_result_payload) result = response.json() if result.get("errorId") != 0: raise Exception(f"Error getting result: {result}") if result.get("status") == "ready": print("Captcha solved!") return result["solution"]["gRecaptchaResponse"] time.sleep(3) # Wait 3 seconds before trying again # Example usage if __name__ == "__main__": try: # Check balance first balance_payload = {"clientKey": API_KEY} balance_response = requests.post(f"{BASE_URL}/getBalance", json=balance_payload) balance_data = balance_response.json() if balance_data.get("errorId") == 0: print(f"Current balance: {balance_data['balance']} {balance_data['currency']}") else: print(f"Error checking balance: {balance_data}") exit(1) # Solve captcha website_url = "https://example.com" website_key = "a5f74b19-9e45-40e0-b45d-47ff91b7a6c2" solution = solve_hcaptcha(website_url, website_key) print(f"Solution token: {solution[:30]}...") except Exception as e: print(f"Error: {e}")
How to Use
- Install the requests library:
pip install requests
- Replace
YOUR_API_KEY
with your actual API key - Update the website URL and hCaptcha site key for your target website
- Run the script to solve the captcha
Finding the hCaptcha Site Key
To use the API, you need to provide the correct hCaptcha site key from the target website. Here's how to find it:
- Open the website with the hCaptcha
- Right-click and select "View Page Source" or "Inspect Element"
- Search (Ctrl+F) for "h-captcha-sitekey" or "data-sitekey"
- The site key is typically a string like "a5f74b19-9e45-40e0-b45d-47ff91b7a6c2"
Using the Solution
Once you have the captcha solution, you need to use it in your automation workflow:
- Find the hCaptcha response input field (usually a hidden input with name "h-captcha-response")
- Set its value to the solution token received from the API
- Submit the form or trigger the appropriate action
⚠️ Note: Captcha tokens usually expire after 2 minutes. Use the solution immediately after receiving it.
Need Help?
If you need assistance with API integration or have questions about our service, don't hesitate to reach out.
Purchase