Get public settings
/public-settingsPublic 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.
Способ запроса
GEThttps://api.stableproxy.com/v2/public-settings
Примеры кода
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();Примеры ответов
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
}