Getting Started
Get started with the Soxway API
Welcome to Soxway API
Soxway provides residential, mobile, and datacenter proxies with a powerful REST API.
Base URL
https://api.soxway.ioAuthentication
Most endpoints require a Bearer token in the Authorization header:
curl -H "Authorization: Bearer YOUR_TOKEN" \
https://api.soxway.io/v1/accountTo obtain a token, use the Issue Token endpoint with your email and password.
Quick Start
- Create an account at my.soxway.io
- Get an API token via
POST /v1/auth/token - Create a proxy via
POST /v1/proxies - Connect using the returned HTTP/SOCKS5 credentials
API Sections
- Public API — Manage proxies, account, geo-targeting, blocklist, and whitelist
- Reseller API — Manage sub-users, allocate traffic, control per-user settings
Rate Limits
| API | Per Minute | Per Hour |
|---|---|---|
| Public | 60 | 1,000 |
| Reseller | 120 | 3,000 |
Error Format
All errors follow a consistent format:
{
"error": {
"code": 1001,
"message": "Authentication token is missing.",
"description": "Include a Bearer token in the Authorization header."
}
}