Soxway Docs

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.io

Authentication

Most endpoints require a Bearer token in the Authorization header:

curl -H "Authorization: Bearer YOUR_TOKEN" \
  https://api.soxway.io/v1/account

To obtain a token, use the Issue Token endpoint with your email and password.

Quick Start

  1. Create an account at my.soxway.io
  2. Get an API token via POST /v1/auth/token
  3. Create a proxy via POST /v1/proxies
  4. 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

APIPer MinutePer Hour
Public601,000
Reseller1203,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."
  }
}

On this page