Tracking Get current tracking info by token (from cookie or query).

A list of all publicly available methods for interacting with the API.

GET

Get tracking info Tracking Get current tracking info by token (from cookie or query). -/tracking/info

Query method

GEThttps://api.stableproxy.com/v2/tracking/info

Code examples

async function getTrackingInfo() {
   const baseUrl = 'https://api.stableproxy.com/v2';
   const req = await fetch(baseUrl + '/tracking/info', {
         method: 'GET',
         headers: {
            'Content-Type': 'application/json'
         }
      }
   );
   
   const res = await req.json();
}