Skip to main content
GET
/
compute
/
machines
List machines in cluster
curl --request GET \
  --url https://api.akua.dev/v1/compute/machines \
  --header 'Authorization: Bearer <token>'
[
  {
    "provider_id": "compute://abc123",
    "node_name": "worker-xl8r2",
    "status": "provisioning"
  }
]

Documentation Index

Fetch the complete documentation index at: https://akua-1dce587a.mintlify.app/llms.txt

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

Authorizations

Authorization
string
header
required

workspace API token (sk_akua_...) or OAuth2 JWT. Create tokens at https://akua.dev/developers/api-tokens

Query Parameters

cluster
string
required

Cluster ID

Response

List of machines

provider_id
string
required
Example:

"compute://abc123"

node_name
string
required
Example:

"worker-xl8r2"

status
string
required
Example:

"provisioning"