Castle Breaker - Captcha solving service for Twitter/X account generation. Castle.io solver, ReCAPTCHA v3 bypass, TLS fingerprint bypass.
Project description
๐ฐ Castle Breaker
Twitter Account Generator & X Solver | Captcha Solving Service
Premium Captcha Solving Service for Twitter/X Account Generation & Bot Bypass
๐ฏ What is Castle Breaker?
Castle Breaker is a premium captcha solving service that provides high-quality solved tokens to bypass bot detection systems. Our solved captcha tokens enable seamless Twitter/X account generation, automation, and access to protected endpoints.
Our Services:
| Service | Description | Platform |
|---|---|---|
| ๐ฐ Castle.io Token Solver | High-quality Castle.io tokens for X.com | Twitter/X |
| โ ReCAPTCHA v3 Solver | Instant ReCAPTCHA tokens for X.com | Twitter/X |
| ๐ TLS Bypass API | Bypass TLS fingerprinting detection | Any protected site |
Why Castle Breaker?
- ๏ฟฝ Optimized for X.com - Our Castle.io and ReCAPTCHA v3 tokens are specifically designed for Twitter/X
- โก High-Quality Tokens - Industry-leading solve rates for bot detection bypass
- ๐ TLS Fingerprint Bypass - Evade Cloudflare, Akamai, and other TLS-based protections
- ๐ Fast Response - Castle.io tokens delivered in ~5 seconds
- ๐ก๏ธ Proxyless - No proxy required for token generation
๐ How It Works
โโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ
โ Your App โ โโโโบ โ Castle Breaker โ โโโโบ โ Solved Token โ
โ (Uses SDK) โ โ (Solving Service) โ โ (Ready to Use) โ
โโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Use token to bypass X.com bot detection
- Request a token through our Python SDK
- We solve Castle.io/ReCAPTCHA challenges on our infrastructure
- Get high-quality tokens ready for Twitter/X account generation
- Use tokens to bypass bot detection on X.com
๐ฆ Installation
Install our Python SDK to access the Castle Breaker service:
pip install castlebreaker
๐ฐ Castle.io Tokens for X.com
X.com (Twitter) uses Castle.io to detect and block bots. Our service solves these challenges and returns valid tokens for your Twitter/X account generation workflows.
Get a Castle.io Token
from castlebreaker import Castle
with Castle(api_key="your-api-key") as client:
# Request a solved Castle.io token from our service
result = client.solve_castle()
# High-quality token ready for X.com
token = result["token"]
# Matching fingerprint data for consistency
cookie = f"__cuid={result['cid']}"
user_agent = result["user_agent"]
accept_lang = result["accept_lang"]
# Use these in your X.com/Twitter requests to bypass bot detection
Bulk Token Generation for Twitter/X Gen
Need multiple tokens for batch Twitter/X account creation? Request them in bulk:
with Castle(api_key="your-api-key") as client:
# Get 10 solved tokens at once for bulk X/Twitter gen
batch = client.solve_castle_many(count=10)
for token in batch["tokens"]:
# Each token is ready for a separate X.com account
print(f"Token: {token[:40]}...")
# All tokens share consistent fingerprint data
cookie = f"__cuid={batch['cid']}"
user_agent = batch["user_agent"]
โ ReCAPTCHA v3 Tokens for X.com
Our service also solves ReCAPTCHA v3 challenges used on Twitter/X signup and login flows.
with Castle(api_key="your-api-key") as client:
# Get a solved ReCAPTCHA v3 token for X.com
captcha_token = client.solve_recaptcha()
# Use this token in your Twitter/X requests
print(f"ReCAPTCHA Token: {captcha_token}")
๐ TLS Bypass API
Many sites use TLS fingerprinting to detect bots. Our TLS Bypass API routes your requests through our infrastructure, presenting legitimate browser fingerprints to bypass these checks.
Bypass Cloudflare TLS Detection
with Castle(api_key="your-api-key") as client:
# Make requests that bypass TLS fingerprinting
result = client.tls_request(
"https://protected-site.com",
tls_config="CLOUDFLARE",
)
print(result["text"]) # Response HTML
print(result["status_code"]) # HTTP status
Bypass Akamai Protection
with Castle(api_key="your-api-key") as client:
# POST request with Akamai TLS bypass
result = client.tls_request(
"https://api.example.com/endpoint",
method="POST",
json={"username": "user", "email": "user@example.com"},
tls_config="AKAMAI",
)
Supported TLS Configurations
| Config | Bypasses | Best For |
|---|---|---|
CLOUDFLARE |
Cloudflare Bot Management | Most websites, Twitter/X |
AKAMAI |
Akamai Bot Manager | E-commerce, financial sites |
CUSTOM |
Generic fingerprint | General scraping |
โก Async API for High-Volume Twitter/X Gen
For high-performance Twitter/X account generation, use our async client:
import asyncio
from castlebreaker import CastleAsync
async def bulk_twitter_x_gen():
async with CastleAsync(api_key="your-api-key") as client:
# Request 50 Castle.io tokens concurrently
tasks = [client.solve_castle() for _ in range(50)]
tokens = await asyncio.gather(*tasks)
for i, result in enumerate(tokens):
print(f"Token {i+1}: {result['token'][:30]}...")
asyncio.run(bulk_twitter_x_gen())
๐ฏ Use Cases
๐ฆ Twitter Account Generator
Use our solved Castle.io tokens to bypass bot detection during Twitter account creation. Perfect for:
- Social media management platforms
- Marketing automation tools
- Business account provisioning
- Testing and development
๐ท X Account Generator
X.com uses the same Castle.io protection as Twitter. Our high-quality tokens enable:
- Bulk X account creation
- Automated signup workflows
- X automation platforms
- Research and testing
๐ก๏ธ Bot Detection Bypass
Our solved tokens are designed to bypass:
- Castle.io bot detection (used by X.com)
- ReCAPTCHA v3 challenges
- TLS fingerprinting checks
- Browser fingerprint verification
๐ TLS Fingerprint Bypass
Access protected sites without getting blocked:
- Cloudflare-protected endpoints
- Akamai Bot Manager sites
- Custom TLS verification systems
๐ฐ Check Your Balance
with Castle(api_key="your-api-key") as client:
balance = client.get_balance()
print(f"Credits: {balance['credits']}")
print(f"Requests: {balance['requests_count']}")
print(f"Spent: ${balance['total_spent']:.2f}")
๐ ๏ธ Exception Handling
from castlebreaker import Castle
from castlebreaker.exceptions import (
AuthenticationError,
RateLimitError,
NetworkError,
CastleBreakerError,
)
with Castle(api_key="your-api-key") as client:
try:
result = client.solve_castle()
except AuthenticationError:
print("Invalid API key - get one at castlebreaker.cc")
except RateLimitError as e:
print(f"Rate limited. Retry after: {e.retry_after}s")
except NetworkError:
print("Connection issue - check your network")
except CastleBreakerError as e:
print(f"Error: {e.message}")
โ๏ธ SDK Configuration
client = Castle(
api_key="your-api-key",
base_url="https://castlebreaker.cc", # Service endpoint
timeout=120.0, # Request timeout
max_retries=3, # Retry attempts
)
โ FAQ
What is Castle Breaker?
Castle Breaker is a captcha solving service that provides high-quality solved tokens for bypassing bot detection systems. We specialize in Castle.io and ReCAPTCHA v3 tokens for X.com (Twitter).
How does this help with Twitter/X account generation?
X.com uses Castle.io to detect and block bots during account creation. Our service solves these challenges and returns valid tokens that you can use in your signup requests to bypass bot detection.
What makes your tokens "high-quality"?
Our tokens are generated with consistent browser fingerprints (user agent, cookies, accept language) that match real user behavior, resulting in higher success rates for Twitter/X account generation.
Do I need proxies?
No! Our Castle.io solver is completely proxyless. We handle all the solving on our infrastructure.
How fast are your solvers?
- Castle.io: ~5 seconds per token
- ReCAPTCHA v3: Instant
- TLS requests: Depends on target site
What is the TLS Bypass API?
Many sites use TLS fingerprinting to detect bots. Our TLS API routes your requests through our infrastructure, presenting legitimate browser TLS fingerprints to bypass these detection systems.
๐ Requirements
- Python 3.10+
- httpx >= 0.27.0
๐ License
MIT License - see LICENSE for details.
๐ Related Keywords
twitter account generator ยท x account generator ยท twitter gen ยท x gen ยท twitter solver ยท x solver ยท twitter captcha solver ยท x captcha solver ยท castle.io solver ยท castle.io bypass ยท recaptcha solver ยท captcha bypass ยท twitter automation ยท x automation ยท twitter bot ยท tls bypass ยท cloudflare bypass ยท akamai bypass ยท twitter account creator ยท x account creator ยท social media automation ยท bot detection bypass ยท captcha solving service
๐ Get Started โข ๐ Dashboard โข ๐ฌ Support
Ready to bypass bot detection on X.com?
pip install castlebreaker
Made with โค๏ธ by the Castle Breaker team
Star โญ this repo if Castle Breaker helps with your Twitter/X automation!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file castlebreaker-1.0.0.tar.gz.
File metadata
- Download URL: castlebreaker-1.0.0.tar.gz
- Upload date:
- Size: 18.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac15b957cc89479064f62f181c94ca69d729dab6aeba18ea81d40ee6f14f45d2
|
|
| MD5 |
e39a4d751be130cf242000024cd03ac7
|
|
| BLAKE2b-256 |
ac9860c5add87d28924bbc2dedae728398fbad382273e3404842611a38d4f7e9
|
File details
Details for the file castlebreaker-1.0.0-py3-none-any.whl.
File metadata
- Download URL: castlebreaker-1.0.0-py3-none-any.whl
- Upload date:
- Size: 23.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85673e398789220e90c4856fe1e2798704bf15159a1954305267cac36e9db8bb
|
|
| MD5 |
ae63dff11201914284327a8cbed48d71
|
|
| BLAKE2b-256 |
4a5279730ef675ec98b7d772407087c6c6dca8e02b51794a417447b6ccdfd051
|