diff --git a/src/Api/Ip.php b/src/Api/Ip.php index f16757f..dac8db8 100644 --- a/src/Api/Ip.php +++ b/src/Api/Ip.php @@ -51,7 +51,7 @@ class Ip extends HttpApi { Assert::stringNotEmpty($domain); - $response = $this->httpGet(sprintf('/v3/domains/%s/ip', $domain)); + $response = $this->httpGet(sprintf('/v3/domains/%s/ips', $domain)); return $this->hydrateResponse($response, IndexResponse::class); }