Skip to main content

anyIP REST API

The anyIP API provides programmatic access to manage your proxy infrastructure.

Authentication

All API requests require authentication using your API key. You can find your API key in the dashboard. Include your API key in the request header:
api-key: YOUR_API_KEY

Base URL

https://anyip.io

Rate Limits

API requests are rate-limited to ensure fair usage and system stability. Contact support if you need higher rate limits.

Available Resources

The API provides access to the following resources:
  • Proxy Accounts - Create and manage proxy accounts
  • Traffic Data - Monitor usage and export traffic logs
  • Geographic Data - Query available countries, regions, and ISPs
  • User Management - Access user information and settings

Quick Example

import requests

url = "https://anyip.io/api/users/me"
headers = {
    "api-key": "YOUR_API_KEY"
}

response = requests.get(url, headers=headers)
user = response.json()
print(user)

Support

Need help? Check our troubleshooting guide or contact support through the dashboard.