Status

Список всех доступных методов для взаимодействия с API.

GET

Get service status -/status

Способ запроса

GEThttps://api.stableproxy.com/v2/status

Примеры кода

async function getStatus() {
   const baseUrl = 'https://api.stableproxy.com/v2';
   const req = await fetch(baseUrl + '/status', {
         method: 'GET',
         headers: {
            'Content-Type': 'application/json'
         }
      }
   );
   
   const res = await req.json();
}

Примеры ответов