> ## Documentation Index
> Fetch the complete documentation index at: https://anyip.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# API Reference

> The anyIP REST API allows you to programmatically manage proxy accounts, monitor traffic, and access geographic data.

# 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](https://dashboard.anyip.io/account/).

**Include your API key in the request header:**

```bash theme={null}
api-key: YOUR_API_KEY
```

## Base URL

```
https://dashboard.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

```python theme={null}
import requests

url = "https://dashboard.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](/guides/troubleshooting) or contact support through the dashboard.
