curl --request GET \
--url https://api.platform.soax.com/v1/proxy/packages \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.platform.soax.com/v1/proxy/packages"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.platform.soax.com/v1/proxy/packages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.platform.soax.com/v1/proxy/packages",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.platform.soax.com/v1/proxy/packages"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.platform.soax.com/v1/proxy/packages")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.platform.soax.com/v1/proxy/packages")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "b2f0c3d4-e5a6-4b7c-8d9e-0f1a2b3c4d5e",
"name": "Residential - EU scraping",
"status": "active",
"status_reason": null,
"created_at": "2026-03-15T12:00:00Z",
"types": [
"wifi"
],
"tiers": [
1,
2,
3
],
"allowed_countries": null,
"traffic_limit": 500000000000,
"traffic_spent": 120000000000,
"traffic_left": 380000000000
},
{
"id": "9d8c7b6a-5f4e-4d3c-2b1a-0e9f8d7c6b5a",
"name": "Mobile - US",
"status": "limited",
"status_reason": "traffic_limit_reached",
"created_at": "2026-05-02T08:30:00Z",
"types": [
"mobile"
],
"tiers": [
1
],
"allowed_countries": [
"us"
],
"traffic_limit": 100000000000,
"traffic_spent": 100000000000,
"traffic_left": 0
}
],
"has_more": false,
"next_cursor": null
}{
"detail": "Invalid status value: archived. Valid values are: active, deleted, limited, paused, suspended"
}{
"detail": "Invalid API key"
}{
"detail": "Missing required scope: proxy:packages:read"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"error": "Rate limit exceeded: 5 per 1 second"
}List packages
Retrieve a paginated list of proxy packages accessible to the API key. If the key is restricted to specific packages, only those are returned. Use cursor-based pagination: pass the next_cursor value from one response as the cursor parameter of the next request until has_more is false. Traffic values are in bytes.
Requires the proxy:packages:read scope.
curl --request GET \
--url https://api.platform.soax.com/v1/proxy/packages \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.platform.soax.com/v1/proxy/packages"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.platform.soax.com/v1/proxy/packages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.platform.soax.com/v1/proxy/packages",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.platform.soax.com/v1/proxy/packages"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.platform.soax.com/v1/proxy/packages")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.platform.soax.com/v1/proxy/packages")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "b2f0c3d4-e5a6-4b7c-8d9e-0f1a2b3c4d5e",
"name": "Residential - EU scraping",
"status": "active",
"status_reason": null,
"created_at": "2026-03-15T12:00:00Z",
"types": [
"wifi"
],
"tiers": [
1,
2,
3
],
"allowed_countries": null,
"traffic_limit": 500000000000,
"traffic_spent": 120000000000,
"traffic_left": 380000000000
},
{
"id": "9d8c7b6a-5f4e-4d3c-2b1a-0e9f8d7c6b5a",
"name": "Mobile - US",
"status": "limited",
"status_reason": "traffic_limit_reached",
"created_at": "2026-05-02T08:30:00Z",
"types": [
"mobile"
],
"tiers": [
1
],
"allowed_countries": [
"us"
],
"traffic_limit": 100000000000,
"traffic_spent": 100000000000,
"traffic_left": 0
}
],
"has_more": false,
"next_cursor": null
}{
"detail": "Invalid status value: archived. Valid values are: active, deleted, limited, paused, suspended"
}{
"detail": "Invalid API key"
}{
"detail": "Missing required scope: proxy:packages:read"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"error": "Rate limit exceeded: 5 per 1 second"
}Authorizations
API key secret (starts with s_live_). Create keys in the dashboard under Settings → API keys, or via POST /v1/api-keys/. Send it as Authorization: Bearer <secret>.
Query Parameters
Opaque pagination cursor from a previous response's next_cursor. Omit for the first page.
Number of packages per page (1–100).
1 <= x <= 100Filter by package status. A single value only — comma-separated lists are rejected with 400.
active, deleted, limited, paused, suspended Was this page helpful?