Tracking

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

POST

Tracking init -/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();
}