Run in Apidog
List the floating IPv4 addresses and IPv6 /64 subnets on your account. Attachment is live: reserved is true when the address is not on a VPS right now. Use POST /vps/floating-ips to reserve another address (type=ipv4 or type=ipv6).
Request Add parameter in header API-key
Example: API-key: ********************
or
Request Code Samples
curl --location 'https://mijn.host/api/v2/vps/floating-ips' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json' Responses application/json
Generate Code
{
"status" : 200 ,
"status_description" : "Request successful" ,
"data" : {
"floating_ips" : [
{
"id" : 1000 ,
"ip" : "185.1.2.3" ,
"type" : "ipv4" ,
"location" : "nl-ams01" ,
"attached_vps_id" : 123 ,
"attached_vps_name" : "web.example.com" ,
"reserved" : false ,
"cancelled" : false
}
] ,
"locations" : [
{
"location" : "nl-ams01" ,
"name" : "NL-AMS01"
}
]
}
}
Modified at 2026-09-07 09:05:53