🚀 Quick Setup

Start Solving CAPTCHAs in Under 5 Minutes

Get your API key, send your first request, and integrate into any workflow with just a few lines of code.

Follow the Guide Talk to a Developer
0.2s
Avg Solve Speed
99.91%
Accuracy Rate
99.9%
Success Rate
170+
Countries

3 Steps to Your First Solve

STEP 01

Get Your API Key

Create a free account and get 100 free solves instantly. No credit card required.

# Your API key format
fc_live_xxxxxxxxxxxxxxxxxxxxxxxx
Get Free Key
STEP 02

Send a Solve Request

Make a POST request with your CAPTCHA details. Our AI processes it instantly.

import requests

res = requests.post(
  'https://api.freecaptcha.one/solve',
  json={
    'api_key': 'YOUR_KEY',
    'type': 'recaptchav2',
    'sitekey': sitekey,
    'url': target_url
  }
)
STEP 03

Use the Solution

Receive the solved token in milliseconds and inject it into your automation flow.

data = res.json()

# ✓ Solution ready
token = data['solution']

# Inject into form
driver.execute_script(
  f"document.getElementById('g-recaptcha-response').value = '{token}'"
)

Works With Any Language

🐍 Python pip install freecaptcha
Node.js npm install freecaptcha
Java Maven / Gradle
🐘 PHP Composer
🦫 Go go get freecaptcha
💎 Ruby gem install freecaptcha
🌐 Any REST Client
📱 Mobile (iOS/Android)

Common Setup Questions

Need help? Our developer support team is always ready to assist.

Sign up for a free account on our website. You'll instantly receive 100 free solves and an API key in your dashboard. No credit card required.

We support 25+ types including reCAPTCHA v1/v2/v3/Enterprise, hCaptcha, Cloudflare Turnstile, image grids, text, math, audio, slide, and more.

We return a JSON response with a "solution" field containing the CAPTCHA token or text, plus metadata like solve_time and request_id.

No hard rate limits on standard plans. Enterprise plans can handle millions of requests per minute with dedicated infrastructure.

Yes! We provide full code examples in Python, Node.js, Java, PHP, Go, Ruby, and cURL in our documentation.