---
title: "List floating IPs"
method: GET
path: "/api/v1/ips"
tags: ["Networking"]
---

# List floating IPs

`GET /api/v1/ips`

List the account's floating (public) IP addresses, including reserved IPs and IPs currently attached to VMs.
Filter to just reserved IPs with `?reserved=true`.

## Query parameters

- `reserved` boolean
- `status` 'free' | 'in-use'
- `limit` integer
- `offset` integer

## Headers

- `X-Project-ID` string, uuid, required

## Response `200`

List of floating IPs

- object
  - `success` boolean
  - `data` FloatingIP[]
    - `id` string, uuid, required — IP identifier.
    - `account_id` string, uuid
    - `project_id` string, uuid
    - `created_by` string, uuid — User who reserved the IP.
    - `ip_address` string, required — The IP address.
    - `type` 'IPv4' | 'IPv6', required — IP family.
    - `status` 'free' | 'in-use', required — - `free` — IP is in the pool, not currently attached to any VM. - `in-use` — currently attached to a VM.
    - `reserved` boolean, required — Whether the IP is reserved (held for the account regardless of VM attachment). A reserved IP can be either `free` (held but not attached) or `in-use` (held and attached).
    - `region` 'us-east'
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `total` integer

## Other responses

- `401` — Authentication required

## Changes

- **2026-05-06** `9e13a6e23934` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/rafftechnologies/apis/raff-api/changes/api/v1/ips/get.md)

---

[API](https://skmtc.dev/rafftechnologies/apis/raff-api.md) · [All operations](https://skmtc.dev/rafftechnologies/apis/raff-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rafftechnologies/raff-api/revisions/2f4df56be77c/schema)
