LogoLogo
  • Documentation
  • Intergrations
  • Changelog
  • OVERVIEW
  • GETTING STARTED
    • Download 9Proxy
    • Quick Start
      • Configure Proxy on macOS/Windows
      • Configure Proxy on Linux
      • Use Proxies on Two or More Devices
    • Advanced Settings
      • For macOS/Windows
        • Set Up a Custom Port Range
        • Auto Rotation Proxy
        • Auto Refresh Proxy
        • Port Configuration
        • Sub-Accounts
        • Share Code / Use Code
        • Set Up a Non-Repeated Proxy
        • Bind IP to Port
      • For Linux
        • Sign In to 9Proxy Account
        • Command References
        • Set Up Starting Port & Port range
        • Auto Refresh Proxy
        • Proxy Authentication
        • Start API
  • API REFERENCES
    • Proxy API
    • Today List API
    • Port API
  • BILLING & PAYMENT
    • Cryptocurrency
    • 9Proxy Wallet
    • Local Payment
    • Credit Card
    • Google Pay
  • ACCOUNT MANAGEMENT
    • Account Deletion
  • TROUBLESHOOTING
    • IP Location Does Not Match
    • Speed Issues
On this page

Was this helpful?

  1. API REFERENCES

Today List API

PreviousProxy APINextPort API

Last updated 2 months ago

Was this helpful?

Forward request

get

Forwards a request to a specified proxy ID and port.

Query parameters
idstringOptional

Proxy ID to forward the request to.

portstringOptional

Port number for the forwarding request.

planstringOptional

Plan type for forwarding (default is '1' if not provided).

tstringOptional

Response type 1=txt, 2=json

Responses
200
Successful response
application/json
400
Error response
application/json
402
Insufficient balance response
application/json
404
Error response
application/json
406
Error response
application/json
get
GET /api/forward HTTP/1.1
Host: 
Accept: */*
{
  "error": true,
  "message": "text",
  "data": [
    "text"
  ]
}

Get today's proxy list

get

Returns a list of proxies that are available today based on query filters.

Query parameters
countrystringOptional

Country code (e.g., US, VN).

statestringOptional

State or province of the proxy.

citystringOptional

City where the proxy is located.

zipstringOptional

Postal code of the proxy location.

ispstringOptional

Internet Service Provider (ISP).

limitintegerOptional

Maximum number of proxies to retrieve.

tstringOptional

Response type 1=txt, 2=json

Responses
200
Successful response
application/json
get
GET /api/today_list HTTP/1.1
Host: 
Accept: */*
200

Successful response

{
  "error": true,
  "message": "text",
  "data": [
    {
      "id": "text",
      "city": "text",
      "ip": "text",
      "country_code": "text",
      "is_online": true,
      "binding": null
    }
  ]
}
  • GETForward request
  • GETGet today's proxy list