Skip to main content
GET
/
security
/
keys
/
{uuid}
Get
curl --request GET \
  --url https://app.coolify.io/api/v1/security/keys/{uuid} \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "uuid": "<string>",
    "name": "<string>",
    "description": "<string>",
    "private_key": "<string>",
    "is_git_related": true,
    "team_id": 123,
    "created_at": "<string>",
    "updated_at": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Go to Keys & Tokens / API tokens and create a new token. Use the token as the bearer token.

Path Parameters

uuid
string
required

Private Key Uuid

Response

Get all private keys.

id
integer
uuid
string
name
string
description
string
private_key
string<private-key>
team_id
integer
created_at
string
updated_at
string
I