Api methods
Список всех доступных методов для взаимодействия с API.
GET
Api methods -/api/methods
Способ запроса
GEThttps://api.stableproxy.com/v2/api/methods
Примеры кода
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();
}