IP addresses
Retrieve Ploi's IP addresses for whitelisting.
When working with Ploi's API you might want to whitelist our IP addresses, like worker IPs or uptime checkers.
The IP addresses in the example response are obfuscated for security reasons.
GET/api/ips
Get IP addresses
This endpoint returns all Ploi IP addresses that you may need to whitelist.
Request
GET
/api/ipscurl -G "https://ploi.io/api/ips" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Response
{
"data": {
"workers": [
"127.0.0.1"
],
"site-monitors": {
"london": "127.0.0.2",
"us": "127.0.0.3",
"singapore": "127.0.0.4"
}
}
}