Get Captcha Providers

December 23, 2025

Table of contents

  1. Request Headers
  2. Responses
  3. Model
  4. Examples
  5. Try It

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}

Responses

  • 200 OK

    Returns masked keys for all configured providers. Empty object if no providers configured.

    {
      "EzCaptcha": "abc...***...xyz",
      "CapSolver": "def...***...uvw"
    }
    
  • 401 Unauthorized

    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())
    

Try It