Skip to content

Proxy Detection

Fresh

Test proxy connectivity and get IP information.

URL: https://openapi.geelark.com/open/v1/proxy/detectMethod: POST

Request Parameters

ParameterRequiredTypeDescription
schemeYesstringProxy type (socks5, http, https)
serverYesstringProxy address
portYesintegerProxy port
usernameNostringUsername
passwordNostringPassword

Request Example

json
{
  "scheme": "socks5",
  "server": "192.3.8.1",
  "port": 8000,
  "username": "admin",
  "password": "admin"
}

Response Example

json
{
  "code": 0,
  "data": {
    "ip": "192.3.8.1",
    "country": "US",
    "region": "California",
    "city": "Los Angeles",
    "latency": 120
  }
}

Error Codes

CodeDescription
45004Proxy check failed
45003Proxy not allowed (mainland China IP)

GEELark API Documentation - Built with VitePress