Skip to main content
GET
/
v1
/
compute
/
configs
List compute configs
curl --request GET \
  --url https://api.cnap.tech/v1/compute/configs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "provider": "hcloud",
      "provider_config": {
        "provider": "<string>",
        "region": "<string>",
        "image": "<string>",
        "machine_type_filter": "<string>"
      },
      "cloud_credential_id": "<string>",
      "created_at": 123
    }
  ],
  "pagination": {
    "cursor": "<string>",
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

Personal Access Token (cnap_pat_...) or OAuth2 JWT. Create tokens at https://cnap.tech/account/tokens

Query Parameters

cursor
string

Pagination cursor from previous response

limit
integer
default:50

Items per page (1-100)

Required range: 1 <= x <= 100
Example:

50

Response

List of compute configs

data
object[]
required
pagination
object
required