Ender Docs

Proxy Checker

Verify if a proxy is working - free tool with no credit cost.

Overview

A free tool to check if a proxy is working and accessible. Requires API key authentication but costs no credits.

Free Tool

Proxy Checker is completely free - no credits required! API key is needed for authentication.

Endpoints

GET /v1/proxy-checker
POST /v1/proxy-checker

Get Tool Info

GET /v1/proxy-checker returns tool metadata (payload + response shape).

Request

Headers

HeaderRequiredDescription
AuthorizationYour API key
Content-Typeapplication/json

Body Parameters

ParameterTypeRequiredDescription
proxystringProxy URL to check

Supported Formats

http://ip:port
http://user:pass@ip:port
socks5://ip:port
socks5://user:pass@ip:port
ip:port:user:pass

Example Request

curl -X POST https://api.ender.black/v1/proxy-checker \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "proxy": "http://user:pass@ip:port"
  }'

Response

Working Proxy

{
  "success": true,
  "data": {
    "ip": "123.45.67.89",
    "message": "Proxy is working"
  }
}

Failed Proxy

{
  "success": false,
  "data": {
    "error": "Proxy is not working or unreachable"
  }
}

Use Cases

  1. Validate before use - Check proxies before using in checkers
  2. Bulk validation - Test multiple proxies before adding to your pool
  3. Debug issues - Verify if proxy problems are causing check failures

On this page