Список инстансов

GET /v1/instances

Retrieve a list of all compute instances associated with your account. You can optionally filter them by region or tags.

Query Parameters

limit
integer
Number of items to return. Default: 50. Max: 200.
region
string
Filter instances by datacenter (e.g. "fra-1", "nyc-1").
Rate limit: 100 requests per minute per IP.

Example Request

curl -X GET \
  -H "Authorization: Bearer $ZENI_API_KEY" \
  "https://api.zeniflow.com/v1/instances?region=fra-1"

Response (200 OK)

{
  "success": true,
  "data": {
    "instances": [
      {
        "id": "i-8jf92kla",
        "name": "prod-api-01",
        "status": "running",
        "ipv4": "185.12.34.56"
      }
    ]
  }
}