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

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

POST

Tracking init Initialize or refresh a visitor tracking session. Accepts optional existing token. Returns token and sets it as a cookie. -/tracking/init

Query method

POSThttps://api.stableproxy.com/v2/tracking/init

Code examples

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