Skip to main content
GET
/
applications
/
{uuid}
/
envs
List Envs
curl --request GET \
  --url https://app.coolify.io/api/v1/applications/{uuid}/envs \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "uuid": "<string>",
    "application_id": 123,
    "service_id": 123,
    "database_id": 123,
    "is_build_time": true,
    "is_literal": true,
    "is_multiline": true,
    "is_preview": true,
    "is_shared": true,
    "is_shown_once": true,
    "key": "<string>",
    "value": "<string>",
    "real_value": "<string>",
    "version": "<string>",
    "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<uuid>
required

UUID of the application.

Response

All environment variables by application UUID.

id
integer
uuid
string
application_id
integer
service_id
integer
database_id
integer
is_build_time
boolean
is_literal
boolean
is_multiline
boolean
is_preview
boolean
is_shared
boolean
is_shown_once
boolean
key
string
value
string
real_value
string
version
string
created_at
string
updated_at
string
I