List compute services

Experimental endpoint: this API is in active development and may change at any time without notice. Returns all compute services the token has access to, ordered by creation time (oldest first). Optionally filter by project ID. Supports cursor-based pagination.

⚠️ Experimental endpoint: this API is in active development and may change at any time without notice. ⚠️

Returns all compute services the token has access to, ordered by creation time (oldest first). Optionally filter by project ID. Supports cursor-based pagination.

GET/v1/compute-services
AuthorizationBearer <token>

OAuth2 authentication

In: header

Scope: workspace:admin, offline_access

Query Parameters

cursor?|

Cursor for pagination

limit?number

Limit for pagination

Default100
projectId?string
Match^(proj_)?([cC][^\s-]{8,}|[a-z0-9]+)$

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://api.prisma.io/v1/compute-services"
{
  "data": [
    {
      "id": "string",
      "type": "compute-service",
      "url": "http://example.com",
      "name": "string",
      "region": {
        "id": "string",
        "name": "string"
      },
      "projectId": "string",
      "latestVersionId": "string",
      "serviceEndpointDomain": "string",
      "createdAt": "2019-08-24T14:15:22Z"
    }
  ],
  "pagination": {
    "nextCursor": "string",
    "hasMore": true
  }
}