Tracking
A list of all publicly available methods for interacting with the API.
GET
Get tracking info -/tracking/info
Query method
GEThttps://api.stableproxy.com/v2/tracking/info
Code examples
JavaScript
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();
}