IGLE API

Proxy API Documentation

Integrate IGLE using a straightforward HTTP API.

HTTPHTTPSSOCKS5JSON

Authentication

Send your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Quick Start

Request five HTTP proxies:

curl -X GET "https://igle.falconcyber.online/v1/proxies?limit=5&type=http&country=US" \
  -H "Authorization: Bearer YOUR_API_KEY"

Example response:

{
  "status": "ok",
  "proxies": [
    "45.12.123.10:8080",
    "195.26.224.135:80"
  ],
  "count": 2,
  "type": "http",
  "country": "US"
}

Endpoints

GET/v1/proxies

Get proxies matching request parameters.

GET/v1/rotate

Request a fresh proxy from the available pool.

GET/v1/status

Read API key status and plan information.

GET/v1/pricing

Return current plan information.

Parameters

ParameterTypeExampleDescription
limitinteger5Number of proxies requested.
typestringhttpProtocol: http, https or socks5.
countrystringUSTwo-letter country code.
formatstringjsonResponse format where supported.

Response format

Successful responses return an ok status plus the requested data.

Error format

{
  "status": "error",
  "error": "invalid_api_key",
  "message": "The supplied API key is invalid."
}

Access plans

3 Days$1.49
7 Days$2.49
14 Days$4.49
30 Days$7.99