v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
Floating IPs

Get floating IP

get/cloud/v1/floatingips/{project_id}/{region_id}/{floating_ip_id}

Path parameters

project_idinteger required

Project ID

Example:1

Project ID

region_idinteger required

Region ID

Example:1

Region ID

floating_ip_idstring uuid4 required

Floating IP ID

Example:c64e5db1-5f1f-43ec-a8d9-5090df85b82d

Floating IP ID

Response

OK

created_atstring date-time required

Datetime when the floating IP was created

creator_task_idstring uuid4 nullable required

Task that created this entity

fixed_ip_addressstring ipvanyaddress nullable required

IP address of the port the floating IP is attached to

floating_ip_addressstring ipvanyaddress nullable required

IP Address of the floating IP

idstring uuid4 required

Floating IP ID

port_idstring uuid4 nullable required

Port ID the floating IP is attached to. The fixed_ip_address is the IP address of the port.

project_idinteger required

Project ID

regionstring required

Region name

region_idinteger required

Region ID

router_idstring uuid4 nullable required

Router ID

status'ACTIVE' | 'DOWN' | 'ERROR' required
task_idstring uuid4 nullable required

The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.

updated_atstring date-time required

Datetime when the floating IP was last updated

Example response

{
  "created_at": "2019-06-13T13:58:12+0000",
  "creator_task_id": "d1e1500b-e2be-40aa-9a4b-cc493fa1af30",
  "fixed_ip_address": "192.168.10.15",
  "floating_ip_address": "172.24.4.34",
  "id": "c64e5db1-5f1f-43ec-a8d9-5090df85b82d",
  "port_id": "ee2402d0-f0cd-4503-9b75-69be1d11c5f1",
  "project_id": 1337,
  "region": "Luxembourg 1",
  "region_id": 7,
  "router_id": "11005a33-c5ac-4c96-ab6f-8f2827cc7da6",
  "tags": [
    {
      "key": "my-tag",
      "read_only": false,
      "value": "my-tag-value"
    }
  ],
  "task_id": "a4eb4b29-048e-42f6-a5e1-2c18bc001c45",
  "updated_at": "2019-06-13T13:58:12+0000"
}