EverySolve CAPTCHA API

Anubis API

EverySolve's Anubis API returns cookie values for your challenge workflow. Send POST /api/v1/captcha with type set to anubis and the inputs listed below.

Anubis is a full-page proof-of-work gateway, recognizable by its anubis_challenge data and progress page rather than a form widget. It returns a gateway cookie, not an embedded-widget token. Cookie lifetime and acceptance remain controlled by the protected site.

Endpoint
POST /api/v1/captcha
Type
anubis
Per 1,000 successful solutions
$0.14 per 1,000 successful solutions

Request parameters

Provide website_url and proxy. This type does not declare optional parameters.

Required parameters

website_urlproxy

Optional parameters

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

How to recognize Anubis

Anubis is a full-page proof-of-work gateway, recognizable by its anubis_challenge data and progress page rather than a form widget.

What makes Anubis different

It returns a gateway cookie, not an embedded-widget token. Cookie lifetime and acceptance remain controlled by the protected site.

Where the Anubis parameters come from

Use the blocked page URL and the same proxy exit that will consume the returned access cookie.

website_urlRequired
The exact page where this challenge appears, including the relevant path rather than only the site home page.
proxyRequired
The proxy for the solve session; when a result is network-bound, use the same exit for the subsequent target request.

What the API returns

The Anubis API returns cookie values in cookie. Its solution format is cookie. Attach the returned cookie fields to subsequent requests for the same workflow.

Solution shape
cookie
Solution fields
cookie

How to use the Anubis API

  1. 01Read GET /api/v1/captcha/types and select the anubis entry.
  2. 02Send type: "anubis" and the required parameters to POST /api/v1/captcha.
  3. 03Read cookie values from cookie.
  4. 04Attach the returned cookie fields to subsequent requests for the same 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.

Anubis integration questions

How can I identify Anubis before choosing a type?

Anubis is a full-page proof-of-work gateway, recognizable by its anubis_challenge data and progress page rather than a form widget. Use anubis only after those signals match the target challenge.

Which target-page values belong in a Anubis request?

Use the blocked page URL and the same proxy exit that will consume the returned access cookie. Provide website_url and proxy. This type does not declare optional parameters.

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

The Anubis API returns cookie values in cookie. Its solution format is cookie. It returns a gateway cookie, not an embedded-widget token. Cookie lifetime and acceptance remain controlled by the protected site.

Which external source explains the Anubis integration?

The Anubis project documents its proof-of-work gateway design. [Open the Anubis reference](https://anubis.techaro.lol/). EverySolve-specific fields and live availability still come from the type catalog.