List available proxies
curl --request GET \
--url https://api.sitespy.app/api/v1/proxies \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/proxies"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.sitespy.app/api/v1/proxies', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"proxies": [
{
"key": null,
"label": "Default"
}
]
}System Information
List available proxies
Proxies a watch can be checked from, for the proxy field. Keys and labels only; proxy URLs are never returned.
GET
/
proxies
List available proxies
curl --request GET \
--url https://api.sitespy.app/api/v1/proxies \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/proxies"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.sitespy.app/api/v1/proxies', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"proxies": [
{
"key": null,
"label": "Default"
}
]
}
