User 2fa
A list of all publicly available methods for interacting with the API.
GET
User 2fa -/user/2fa
Query method
GEThttps://api.stableproxy.com/v2/user/2fa
Code examples
JavaScript
async function getUser2fa() {
const baseUrl = 'https://api.stableproxy.com/v2';
const req = await fetch(baseUrl + '/user/2fa', {
method: 'GET',
headers: {
'Authorization': 'API-Token [YOUR TOKEN]',
'Content-Type': 'application/json'
}
}
);
const res = await req.json();
}