settings

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

GET

Get public settings

/public-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.

Query method

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

Code examples

1const baseUrl = "https://api.stableproxy.com/v2";
2const response = await fetch(baseUrl + "/public-settings", {
3 method: "GET",
4 headers: {
5 "Content-Type": "application/json"
6 }
7});
8const data = await response.json();

Examples of answers

Success response200application/json
{
  "data": {
    "trustpilot_review_count": 1284,
    "trustpilot_score": 4.8,
    "google_review_count": 316,
    "google_score": 4.9,
    "max_score": 5
  },
  "good": true
}