settings

A list of all publicly available methods for interacting with the API.

GET

Get public settings settings ### Public settings Site-wide values maintained in the admin panel — currently the review counts and scores rendered as social proof on the landing pages.No authentication. Every declared key is always present, so a client never has to handle a missing field. Public -/public-settings

Query method

GEThttps://api.stableproxy.com/v2/public-settings

Code examples

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

Examples of answers