EverySolve CAPTCHA API

CaptchaFox API

EverySolve's CaptchaFox API returns a token for your challenge workflow. Send POST /api/v1/captcha with type set to captchafox and the inputs listed below.

CaptchaFox is a site-key widget; identify its script or widget configuration before copying the key. It returns a widget token, not a page-access cookie. Do not reuse a reCAPTCHA or Turnstile key simply because the DOM also says sitekey.

Endpoint
POST /api/v1/captcha
Type
captchafox
Per 1,000 successful solutions
$1.53 per 1,000 successful solutions

Request parameters

Provide website_url, website_key, and proxy. Optional parameters are user_agent.

Required parameters

website_urlwebsite_keyproxy

Optional parameters

user_agent
captchafox.sh
curl -X POST https://api.everyinfra.com/api/v1/captcha \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type":"captchafox","website_url":"<website_url>","website_key":"<website_key>","proxy":"<proxy>"}'

How to recognize CaptchaFox

CaptchaFox is a site-key widget; identify its script or widget configuration before copying the key.

What makes CaptchaFox different

It returns a widget token, not a page-access cookie. Do not reuse a reCAPTCHA or Turnstile key simply because the DOM also says sitekey.

Where the CaptchaFox parameters come from

Use the exact widget page and website_key, plus the same proxy context required by this contract; user_agent is optional.

website_urlRequired
The exact page where this challenge appears, including the relevant path rather than only the site home page.
website_keyRequired
The public site or widget key copied from this exact target integration; it is not a secret key.
proxyRequired
The proxy for the solve session; when a result is network-bound, use the same exit for the subsequent target request.
user_agentOptional
The browser user agent for this challenge session; keep it consistent when the returned result is bound to that session.

What the API returns

The CaptchaFox API returns a token in token. Its solution format is token. Submit the token in the field or verification request expected by the target workflow.

Solution shape
token
Solution fields
token

How to use the CaptchaFox API

  1. 01Read GET /api/v1/captcha/types and select the captchafox entry.
  2. 02Send type: "captchafox" and the required parameters to POST /api/v1/captcha.
  3. 03Read a token from token.
  4. 04Submit the token in the field or verification request expected by the target workflow.

Billing and availability

EverySolve charges only when a solution is delivered successfully. Unsuccessful attempts are refunded automatically. Read available and the price fields from GET /api/v1/captcha/types at request time rather than treating them as static page content.

CaptchaFox integration questions

How can I identify CaptchaFox before choosing a type?

CaptchaFox is a site-key widget; identify its script or widget configuration before copying the key. Use captchafox only after those signals match the target challenge.

Which target-page values belong in a CaptchaFox request?

Use the exact widget page and website_key, plus the same proxy context required by this contract; user_agent is optional. Provide website_url, website_key, and proxy. Optional parameters are user_agent.

What does CaptchaFox return, and what should not be confused with it?

The CaptchaFox API returns a token in token. Its solution format is token. It returns a widget token, not a page-access cookie. Do not reuse a reCAPTCHA or Turnstile key simply because the DOM also says sitekey.

Which external source explains the CaptchaFox integration?

CaptchaFox documents its client-side setup and site-key integration. [Open the CaptchaFox reference](https://docs.captchafox.com/getting-started). EverySolve-specific fields and live availability still come from the type catalog.