# Getting Started

This guide will help you get started with CaptchaSolv in just a few minutes.


# Registration

# Step 1: Join Discord

Join our Discord server to create your account and get your API key.

Join Discord

# Step 2: Create Account

Use the /panel command in our Discord server to create your account.

# Step 3: Claim Free Solves

Use the /claim command daily to get 100 free captcha solves!


# Base URL

All API requests should be made to:

https://v1.captchasolv.com

# Your First Request

Here's a quick example to solve a reCAPTCHA v2:

import requests

API_KEY = "your_api_key_here"

response = requests.post("https://v1.captchasolv.com/solve", json={
    "clientKey": API_KEY,
    "task": {
        "type": "RecaptchaV2TaskProxyless",
        "websiteURL": "https://example.com",
        "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq1bi0DJwx_mJ-"
    }
})

result = response.json()
if result["errorId"] == 0:
    print(f"Token: {result['solution']['token']}")
else:
    print(f"Error: {result['errorDescription']}")
const axios = require('axios');

const API_KEY = 'your_api_key_here';

const response = await axios.post('https://v1.captchasolv.com/solve', {
    clientKey: API_KEY,
    task: {
        type: 'RecaptchaV2TaskProxyless',
        websiteURL: 'https://example.com',
        websiteKey: '6Le-wvkSAAAAAPBMRTvw0Q4Muexq1bi0DJwx_mJ-'
    }
});

if (response.data.errorId === 0) {
    console.log('Token:', response.data.solution.token);
} else {
    console.log('Error:', response.data.errorDescription);
}
curl -X POST https://v1.captchasolv.com/solve \
  -H "Content-Type: application/json" \
  -d '{
    "clientKey": "YOUR_API_KEY",
    "task": {
      "type": "RecaptchaV2TaskProxyless",
      "websiteURL": "https://example.com",
      "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq1bi0DJwx_mJ-"
    }
  }'

# Next Steps

Authentication
authentication/
Quick Start
quick-start/
API Reference
../api-reference/