Api methods
Lista wszystkich publicznie dostępnych metod interakcji z API.
GET
Api methods -/api/methods
Metoda zapytania
GEThttps://api.stableproxy.com/v2/api/methods
Przykłady kodu
JavaScript
async function getApiMethods() {
const baseUrl = 'https://api.stableproxy.com/v2';
const req = await fetch(baseUrl + '/api/methods', {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
}
);
const res = await req.json();
}