API server

https://app.coolify.io/api/v1

Choose where to send API requests

This changes the request URL and code examples on every endpoint page.

API server type

Requests will use

https://app.coolify.io/api/v1

Use only a Coolify URL you trust. Sending a test request also sends the API token you enter.

PUT
/servers/{uuid}/proxy/configuration

Save the raw proxy Docker Compose configuration for a team-owned server. Multi-line configuration must be base64 encoded (same pattern as other compose payloads).

Authorization

bearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

uuid*string

Server UUID

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

configuration*string

Proxy docker-compose YAML. Prefer base64 encoding for multi-line content.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X PUT "https://app.coolify.io/api/v1/servers/string/proxy/configuration" \  -H "Content-Type: application/json" \  -d '{    "configuration": "string"  }'
{  "message": "Proxy configuration saved.",  "proxy_type": "string",  "status": "string",  "redirect_enabled": true,  "redirect_url": "string",  "generate_exact_labels": true,  "configuration": "string"}
{  "message": "Invalid token."}
{  "message": "Unauthenticated."}
{  "message": "Resource not found."}
{  "message": "Validation error.",  "errors": {    "name": [      "The name field is required."    ],    "api_url": [      "The api url field is required.",      "The api url format is invalid."    ]  }}