v33

latestOpenAPI 3.1.0raw.githubusercontent.com2026-04-175267122.5 KB

List ingresses

get/ingresses

Query parameters

tagsobject

User-defined key-value tags.

Filter ingresses by tag key-value pairs.

{
  "team": "backend",
  "env": "staging"
}

Response

List of ingresses

idstring required

Auto-generated unique identifier

namestring required

Human-readable name

tagsTags

User-defined key-value tags.

created_atstring date-time required

Creation timestamp (RFC3339)

Example response

[
  {
    "id": "2OgJqXsP7j1qLVVYvGJDNiYVlPO",
    "name": "my-api-ingress",
    "tags": {
      "team": "backend",
      "env": "staging"
    },
    "rules": [
      {
        "match": {
          "hostname": "{instance}.example.com",
          "port": 8080
        },
        "target": {
          "instance": "{instance}",
          "port": 8080
        }
      }
    ],
    "created_at": "2025-01-15T10:00:00Z"
  }
]