Skip to main content
GET
/
api
/
v1
/
vms
/
{id}
/
networks
List VM network interfaces
curl --request GET \
  --url https://api.rafftechnologies.com/api/v1/vms/{id}/networks \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": [
    {
      "nic_id": 0,
      "network_name": "vpc-prod",
      "ip": "10.0.1.42",
      "type": "public",
      "gateway": "10.0.1.1",
      "security_group_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.rafftechnologies.com/llms.txt

Use this file to discover all available pages before exploring further.

Updated May 8, 2026

Authorizations

X-API-Key
string
header
required

API key for authentication. Each key is bound to a specific account.

Path Parameters

id
string<uuid>
required

VM ID (UUID)

Query Parameters

type
enum<string>

Filter to one interface type. Omit to return all.

Available options:
public,
vpc,
ipv6

Response

List of network interfaces

success
boolean
data
object[]
Last modified on May 8, 2026