v12

latestOpenAPI 3.0.3raw.githubusercontent.com2026-06-1811583196.1 KB
Networking

List security groups

List the account's security groups. Pass X-Project-ID to scope to one project, or omit it to list across all accessible projects.

get/api/v1/security-groups

Headers

X-Project-IDstring uuid

Response

List of security groups

successboolean

Example response

{
  "data": [
    {
      "name": "web-server",
      "rules": [
        {
          "range": "80",
          "ip": "0.0.0.0"
        }
      ]
    }
  ]
}