Get Captcha Providers
December 23, 2025
Table of contents
Retrieve configured captcha provider API keys (masked for security).
https://api.useapi.net/v1/google-flow/accounts/captcha-providers
Request Headers
Authorization: Bearer {API token}
API tokenis required, see Setup useapi.net for details.
Responses
-
Returns masked keys for all configured providers. Empty object if no providers configured.
{ "EzCaptcha": "abc...***...xyz", "CapSolver": "def...***...uvw" } -
Invalid API token.
{ "error": "Unauthorized" }
Model
{ // TypeScript, all fields are optional
EzCaptcha?: string // Masked API key or omitted if not configured
CapSolver?: string // Masked API key or omitted if not configured
YesCaptcha?: string // Masked API key or omitted if not configured
}
Examples
-
curl -H "Accept: application/json" \ -H "Authorization: Bearer YOUR_API_TOKEN" \ "https://api.useapi.net/v1/google-flow/accounts/captcha-providers" -
const apiUrl = 'https://api.useapi.net/v1/google-flow/accounts/captcha-providers'; const token = 'YOUR_API_TOKEN'; const response = await fetch(apiUrl, { headers: { 'Authorization': `Bearer ${token}` } }); const result = await response.json(); console.log('Configured providers:', result); -
import requests apiUrl = 'https://api.useapi.net/v1/google-flow/accounts/captcha-providers' token = 'YOUR_API_TOKEN' headers = { 'Authorization': f'Bearer {token}' } response = requests.get(apiUrl, headers=headers) print(response.status_code, response.json())