Cancel a floating IP
See what a floating IP costs, and cancel it at the end of its term or straight away.
In the dashboard
Each floating IP is a service of its own, with its own price and renewal date. Its Billing tab shows what it costs. Cancel it when you no longer need the address, and we release the address back to our pool.
Cancel a service explains how cancelling works for every product. This page covers what it does to a floating IP.
Before you begin
Section titled Before you begin- Find everything that uses the address itself: DNS records that point at it, players or clients that connect to it, and allow lists at other providers. Once the address is released, it no longer reaches you. Join addresses of a server follow the server back to its own address.
- If the floating IP is the address that came with an instance, cancelling it takes the instance's public IPv4 address away.
What a floating IP costs
Section titled What a floating IP costs- A single address costs nothing while it is the primary address of a Cloud Compute instance.
- Anywhere else, a single address bills at its plan's price: while it is unattached, as an additional address on an instance, or on a Container Apps server.
- A subnet always bills at its plan's price.
The price follows the address. When you attach or detach it, or make another address an instance's primary address, we update the price. The Price on the Billing and Overview tabs is what the next renewal costs. We create each renewal invoice ahead of the Next renewal date, at the price that applies then.
The IPv4 address that comes with an instance is its primary address, so it costs nothing. When you make another floating IP the instance's primary address, that one becomes free and the address that came with the instance bills at its plan's price.
The order page shows each plan's price before you order, as Order a floating IP describes.
See the plan
Section titled See the plan- In the dashboard, go to Floating IPs, open the address and select the Billing tab.
- Read the Current plan card.
- Product and Plan
- The floating IP plan and billing period you ordered.
- Price
- What the next renewal costs, as What a floating IP costs explains.
- Status
- The state of the service, such as
ActiveorSuspended. - Next renewal
- The date of the next renewal. A floating IP billed by the hour shows Used this month instead.
- Set up and Service ID
- When we assigned the address, and the number to quote when you contact support.
The Activity table under the card lists setup, renewals and other changes to the service.
You cannot change a floating IP's plan, so the tab has no Change plan… button. For another size or billing period, order a new floating IP, move your targets to it, then cancel the old one.
Cancel the floating IP
Section titled Cancel the floating IPOn the Billing tab, select Cancel service… on the Cancel service card.
Under When, choose when the floating IP ends:
- At the end of the current term keeps it until the paid period ends. The dialog shows the date.
- Immediately ends it now. We do not refund the unused time.
A floating IP billed by the hour has no choice. It ends at once, and billing stops at the hour.
Type
canceland select Cancel service.
Warning
When the floating IP ends, we detach it from its instance or server and release the address to our pool. You cannot get the address back, and another customer can order it. Its DDoS Shield profile stops applying. We do not remove its reverse DNS.
A subnet ends as a whole: we detach every host and release the whole block.
Result
Section titled ResultAfter you cancel at the end of the term, the message reads Scheduled for end-of-term termination; service remains active until then. The Billing tab shows Cancellation scheduled with the date the floating IP ends. The address keeps working until then, and we raise no more renewal invoices for it.
After an immediate cancellation, the message reads Immediate termination queued, and we detach and release the address.
Either way, we cancel the floating IP's unpaid invoices, and we email you about the cancellation.
Troubleshooting
Section titled TroubleshootingService already scheduled for end-of-term termination- You already cancelled the floating IP at the end of its term. To end it sooner, contact support.
Service already cancelled/terminated- The floating IP has ended or is being released.
- You want to keep a floating IP that is scheduled to end
- Contact support before the date that Cancellation scheduled shows.
Suspended- We suspended the floating IP, usually for an unpaid invoice, and a suspension also detaches it. Pay the open invoice, then attach it again.
- The Price went up
- The address is no longer an instance's primary address. It may have been detached, moved to a server, or replaced as primary by another address. What a floating IP costs lists when a single address is free.
Related
Section titled Related- Cancel a service
- Pay an invoice
- How hourly billing works
- Attach and detach a floating IP
- Order a floating IP
With the API
Section titled With the APICancel a floating IP through the services API, with its service ID as the service reference:
curl -X POST https://api.coritan.com/api/v1/services/214/cancel \
-H "Authorization: Bearer $CORITAN_TOKEN" \
-H "Content-Type: application/json" \
-d '{"immediate": false, "reason": "Moved to a subnet"}'
Send immediate as true to end the floating IP now, or false (the default) to end it at the end of its term. reason is optional. keep_snapshot has no effect on a floating IP.
{
"message": "Scheduled for end-of-term termination; service remains active until then",
"immediate": false,
"status": "active",
"termination_date": "2026-10-25T00:00:00",
"snapshot_taken": false
}
GET /api/v1/client/ips/{service_id} returns the floating IP's current price in amount and its renewal date in next_due_date, as Floating IPs describes.
The services API reference lists every field.