## List
`gpu_droplets.floating_ips.list(FloatingIPListParams**kwargs) -> FloatingIPListResponse`
**get** `/v2/floating_ips`
To list all of the floating IPs available on your account, send a GET request to `/v2/floating_ips`.
### Parameters
- **page:** `int`
Which 'page' of paginated results to return.
- **per\_page:** `int`
Number of items returned per page
### Returns
- `class FloatingIPListResponse`
- **meta:** `MetaProperties`
Information about the response itself.
- **floating\_ips:** `Optional[List[FloatingIP]]`
- **droplet:** `Optional[Droplet]`
The Droplet that the floating IP has been assigned to. When you query a floating IP, if it is assigned to a Droplet, the entire Droplet object will be returned. If it is not assigned, the value will be null.
Requires `droplet:read` scope.
- `Droplet`
- **DropletNull:** `Optional[object]`
If the floating IP is not assigned to a Droplet, the value will be null.
- **ip:** `Optional[str]`
The public IP address of the floating IP. It also serves as its identifier.
- **locked:** `Optional[bool]`
A boolean value indicating whether or not the floating IP has pending actions preventing new ones from being submitted.
- **project\_id:** `Optional[str]`
The UUID of the project to which the reserved IP currently belongs.
Requires `project:read` scope.
- **region:** `Optional[Region]`
The region that the floating IP is reserved to. When you query a floating IP, the entire region object will be returned.
- **links:** `Optional[PageLinks]`
### Example
```python
from do_gradientai import GradientAI
client = GradientAI()
floating_ips = client.gpu_droplets.floating_ips.list()
print(floating_ips.meta)
```