EverySolve CAPTCHA API

Audio CAPTCHA API

EverySolve's Audio CAPTCHA API returns text for your challenge workflow. Send POST /api/v1/captcha with type set to audio and the inputs listed below.

This task transcribes an audio CAPTCHA payload; it does not fetch audio from a page or solve an image challenge. It returns text. Use image for characters in a still image and text_captcha for a written question.

Endpoint
POST /api/v1/captcha
Type
audio
Per 1,000 successful solutions
$0.83 per 1,000 successful solutions

Request parameters

Provide body. Optional parameters are language.

Required parameters

body

Optional parameters

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

How to recognize Audio CAPTCHA

This task transcribes an audio CAPTCHA payload; it does not fetch audio from a page or solve an image challenge.

What makes Audio CAPTCHA different

It returns text. Use image for characters in a still image and text_captcha for a written question.

Where the Audio CAPTCHA parameters come from

body is the audio content accepted by the API; language is an optional transcription hint rather than a guaranteed detection result.

bodyRequired
The challenge payload itself. Its media type follows this page's task: image data for visual tasks and audio data for the audio task.
languageOptional
A language hint for recognition or transcript handling; it does not guarantee language detection or translation.

What the API returns

The Audio CAPTCHA API returns text in text. Its solution format is text. Use the returned text as the challenge answer.

Solution shape
text
Solution fields
text

How to use the Audio CAPTCHA API

  1. 01Read GET /api/v1/captcha/types and select the audio entry.
  2. 02Send type: "audio" and the required parameters to POST /api/v1/captcha.
  3. 03Read text from text.
  4. 04Use the returned text as the challenge answer.

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.

Audio CAPTCHA integration questions

How can I identify Audio CAPTCHA before choosing a type?

This task transcribes an audio CAPTCHA payload; it does not fetch audio from a page or solve an image challenge. Use audio only after those signals match the target challenge.

Which target-page values belong in a Audio CAPTCHA request?

body is the audio content accepted by the API; language is an optional transcription hint rather than a guaranteed detection result. Provide body. Optional parameters are language.

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

The Audio CAPTCHA API returns text in text. Its solution format is text. It returns text. Use image for characters in a still image and text_captcha for a written question.

Which external source explains the Audio CAPTCHA integration?

Google's accessibility help documents the audio alternative as a CAPTCHA form. [Open the Audio CAPTCHA reference](https://support.google.com/recaptcha/answer/6175971). EverySolve-specific fields and live availability still come from the type catalog.