Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.funbypass.com/llms.txt

Use this file to discover all available pages before exploring further.

FunBypass is an HTTP API for FunCaptcha workflows. You create a task, poll its status, and retrieve the result token — three endpoints over plain HTTP.

Get started

Quickstart

Get your first task running in a few lines of code.

API Reference

Every endpoint with request and response schemas.

Task Lifecycle

How a task moves from created to ready.

SDKs & Examples

Copy-paste examples in Python, JavaScript, and cURL.

Base URL

All requests go to:
https://api.funbypass.com
Authenticate every request with the clientKey from your dashboard.

How it works

1

Create a task

Send POST /createTask with your key, site details, and proxy. The response returns a taskId.
2

Poll for the result

Call GET /getTaskResult/{taskId} until status is ready.
3

Use the token

The ready response contains the result token for that session.