## Retrieve `gpu_droplets.floating_ips.retrieve(strfloating_ip) -> FloatingIPRetrieveResponse` **get** `/v2/floating_ips/{floating_ip}` To show information about a floating IP, send a GET request to `/v2/floating_ips/$FLOATING_IP_ADDR`. ### Parameters - **floating\_ip:** `str` ### Returns - `class FloatingIPRetrieveResponse` - **floating\_ip:** `Optional[FloatingIP]` ### Example ```python from do_gradientai import GradientAI client = GradientAI() floating_ip = client.gpu_droplets.floating_ips.retrieve( "192.168.1.1", ) print(floating_ip.floating_ip) ```