Skip to main content
GET
/
api
/
v2
/
order
/
fetch
/
{order_id}
Get Order
curl --request GET \
  --url https://dashboard.statproxies.com/api/v2/order/fetch/{order_id}
import requests

url = "https://dashboard.statproxies.com/api/v2/order/fetch/{order_id}"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://dashboard.statproxies.com/api/v2/order/fetch/{order_id}', 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://dashboard.statproxies.com/api/v2/order/fetch/{order_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$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://dashboard.statproxies.com/api/v2/order/fetch/{order_id}"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://dashboard.statproxies.com/api/v2/order/fetch/{order_id}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://dashboard.statproxies.com/api/v2/order/fetch/{order_id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "response": "<string>",
  "order": {},
  "order.order_id": "<string>",
  "order.subscription_id": "<string>",
  "order.product_type": "<string>",
  "order.quantity": 123,
  "order.unix_purchase_date": 123,
  "order.unix_expiration_date": 123,
  "order.proxy_username": "<string>",
  "order.proxy_password": "<string>",
  "order.proxies": [
    {}
  ]
}
Retrieve detailed proxy information for a specific order, including all assigned IP addresses.

Request

Headers

HeaderValueRequired
AuthorizationBearer {your_api_key}Yes

Path Parameters

order_id
string
required
The order ID returned from order creation.

Query Parameters

format
string
Proxy output format. Options:
  • ipup - ip:port:username:password (default)
  • upip - username:password:ip:port
  • upaip - username:password@ip:port
  • object - JSON object format

Example Requests

Default Format

curl -X GET "https://dashboard.statproxies.com/api/v2/order/fetch/sub_1rqjp3jb4g9i6pkhdwmkpjob" \
  -H "Authorization: Bearer {your_api_key}"

Custom Format

curl -X GET "https://dashboard.statproxies.com/api/v2/order/fetch/sub_1rqjp3jb4g9i6pkhdwmkpjob?format=object" \
  -H "Authorization: Bearer {your_api_key}"

Response

Success Response

{
  "response": "success",
  "order": {
    "order_id": "sub_1rqjp3jb4g9i6pkhdwmkpjob",
    "subscription_id": "sub_1RqJP3JB4G9i6PKHDwmKPJOb",
    "product_type": "captcha",
    "quantity": 10,
    "unix_purchase_date": 1753815092,
    "unix_expiration_date": 1756493492,
    "proxy_username": "sub_1rqjp3jb4g9i6pkhdwmkpjob",
    "proxy_password": "stat261",
    "proxies": [
      "31.193.191.6:3128:sub_1rqjp3jb4g9i6pkhdwmkpjob:stat261",
      "31.193.191.7:3128:sub_1rqjp3jb4g9i6pkhdwmkpjob:stat261",
      "31.193.191.8:3128:sub_1rqjp3jb4g9i6pkhdwmkpjob:stat261"
    ]
  }
}

Success Response (Object Format)

{
  "response": "success",
  "order": {
    "order_id": "sub_1rqjp3jb4g9i6pkhdwmkpjob",
    "subscription_id": "sub_1RqJP3JB4G9i6PKHDwmKPJOb",
    "product_type": "captcha",
    "quantity": 10,
    "unix_purchase_date": 1753815092,
    "unix_expiration_date": 1756493492,
    "proxy_username": "sub_1rqjp3jb4g9i6pkhdwmkpjob",
    "proxy_password": "stat261",
    "proxies": [
      {
        "ip": "31.193.191.6",
        "port": 3128,
        "username": "sub_1rqjp3jb4g9i6pkhdwmkpjob",
        "password": "stat261"
      },
      {
        "ip": "31.193.191.7",
        "port": 3128,
        "username": "sub_1rqjp3jb4g9i6pkhdwmkpjob",
        "password": "stat261"
      }
    ]
  }
}

Response Fields

response
string
Status of the request.
order
object
Order details object.
order.order_id
string
Unique order identifier.
order.subscription_id
string
Stripe subscription ID.
order.product_type
string
Product type identifier.
order.quantity
integer
Number of proxies in the order.
order.unix_purchase_date
integer
Purchase timestamp (Unix epoch).
order.unix_expiration_date
integer
Expiration timestamp (Unix epoch).
order.proxy_username
string
Authentication username for all proxies in this order.
order.proxy_password
string
Authentication password for all proxies in this order.
order.proxies
array
Array of proxy strings or objects (depending on format).

Error Responses

404 Not Found

{
  "message": "Order not found"
}

503 Service Unavailable

{
  "message": "Unable to fetch IP from servers"
}

Notes

  • Use the order_id (not subscription_id) for fetching proxy details
  • All proxies in an order share the same username and password
  • The proxy port is typically 3128 for HTTP/HTTPS proxies