Retrieve an Existing Floating IP
- Name
get
- Type
- /v1/floating_ips/:address
- Description
Send GET request to retrieve a Floating IP.
Request
Example
curl -X GET "https://api.simplystack.com/v1/floating_ips/192.168.1.241" \
-H "Content-Type: application/json" \
-H "Authorization: Token d359ad9cc9422b5ff07aede0cd2707da4ff82be0" \
Response
JSON object with key named floating_ip
which is an array of the following attributes for the Floating IP object:
Attributes
Example
json
{
"floating_ip": {
"address": "192.168.1.241",
"region": {
"available": true,
"features": ["floating_ips"],
"name": "Frankfurt",
"slug": "fra"
},
"task": null,
"stacklet": null
}
}