Join our Discord — Support, updates & the entire fuco.cc shop → discord.gg/fuco
developer tools by fuco

fuco.cc

Two precision-built tools for developers.
API-first. Fast. No friction.

cap.fuco.cc + mail.fuco.cc
Services
Captcha Solver Down
FucoCap
cap.fuco.cc

hCaptcha solver built on realistic bezier mouse motion simulation. Drop-in API — pass a sitekey and host, get a token back.

  • Bezier curve mouse movement generation
  • Realistic motion data for hCaptcha widget
  • REST API — sitekey + host → token
  • Proxy support built-in
solver.py
from fucocap import Hcaptcha   token = Hcaptcha(     sitekey='4c672d35-...',     host='discord.com',     proxy='' ).solve()
Temp Email Up
Fuco Mail
mail.fuco.cc

Disposable email as a service. Generate addresses instantly, receive SMTP mail in under a second, and read every message via a clean REST API or browser inbox.

  • Built-in SMTP listener — <1s delivery
  • Generate / fetch / delete via REST API
  • Browser inbox — live view, no extra setup
generate.sh
# generate a disposable inbox $ curl -X POST mail.fuco.cc/api/email/generate \   -H "Authorization: Bearer <KEY>" \   -d '{"prefix":"dev-test"}'   # → {"email":"dev-test@mail.fuco.cc"}