- 👋 Hello
- API Introduction
- API Reference
- User
- Balance
- Affiliate
- Invoices
- Support
- SSH Keys
- Servers
- Scale
- Addons
- Rescue
- List plans
- List servers
- Server status
- Get a server
- Server metrics
- Bandwidth
- Deploy new server
- Start a server
- Restart a server
- Stop a server
- Power off
- Cancel server
- Undo cancel request
- Change password
- Update hostname
- Update SSH Keys
- Modify ISOs
- Restore
- Renew server
- Reinstall Server
- Change Primary IP
- Calculate renew amount
- Plans
- Snapshots
- Backups
- Server Images
- Floating IPs
- IP Addresses
- Network Protection
- Orders
- ISOs
Purchase Floating IPs
POST
https://api.vpsbg.eu/v1/floating-ips
Floating IPs
Account limits#
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Accept
stringÂ
required
Default:
application/json
Body Params application/json
billing_cycle
integerÂ
optional
ipv4
integerÂ
optional
ipv4_ddos
integerÂ
optional
ipv6
integerÂ
optional
server_id
integerÂ
optional
Note: The server might be rebooted to apply the network settings.
Example
{
"billing_cycle": 1,
"ipv4": 1,
"ipv4_ddos": 0,
"ipv6": 0,
"server_id": 2478
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.vpsbg.eu/v1/floating-ips' \
--header 'Accept;' \
--header 'Content-Type: application/json' \
--data-raw '{
"billing_cycle": 1,
"ipv4": 1,
"ipv4_ddos": 0,
"ipv6": 0,
"server_id": 2478
}'
Responses
🟢200You will receive the purchased IP addresses. If you selected the option to attach them to a server, the server's will be rebooted to apply the new network settings.
application/json
Body
data
array[object (Floating IP) {13}]Â
optional
id
integerÂ
optional
Example:
1
status
stringÂ
optional
Example:
active
server_id
integer  | nullÂ
optional
Example:
2586
server_hostname
stringÂ
required
Example:
ubuntu-2g
server_main_ip
stringÂ
required
locked
boolean  | nullÂ
required
Default:
false
locked_at
string  | nullÂ
optional
Example:
2024-11-24T22:00:00.000000Z
lock_reason
string  | nullÂ
required
Example:
floating-ip-attach
billing_cycle
integerÂ
required
Example:
3
expiry_at
stringÂ
optional
Example:
2025-09-29T21:00:00.000000Z
plan
objectÂ
required
ip_address
objectÂ
required
cancel_request
objectÂ
required
Example
{
"data": [
{
"id": 614,
"status": "processing",
"server_id": null,
"locked": false,
"locked_at": null,
"lock_reason": null,
"billing_cycle": 1,
"server_hostname": null,
"expiry_at": null,
"plan": {
"id": 32,
"name": "floating-ipv4",
"available": true,
"price": 2.5,
"price_with_vat": 3
},
"ip_address": null,
"cancel_request": null
}
]
}
🔴500Server Error
Modified at 2024-11-05 08:53:34