GET
/
organizations
/
{organization_name}
/
projects
/
{project_name}
/
containers
/
{container_group_name}
/
system-logs
Get System Logs
curl --request GET \
  --url https://api.salad.com/api/public/organizations/{organization_name}/projects/{project_name}/containers/{container_group_name}/system-logs \
  --header 'Salad-Api-Key: <api-key>'
{
  "items": [
    {
      "event_name": "<string>",
      "event_time": "2023-11-07T05:31:56Z",
      "instance_id": "db3a4591-efc3-46c0-b06a-3d820c0ec100",
      "machine_id": "eb3a4591-efc3-46c0-b06a-3d820c0ec100",
      "resource_cpu": 8,
      "resource_gpu_class": "<string>",
      "resource_memory": 31232,
      "resource_storage_amount": 134754598912,
      "version": "<string>"
    }
  ]
}
Last Updated: July 1, 2025
This API endpoint is deprecated and will be removed in a future version of the SaladCloud API. The new Query Log Entries API endpoint replaces this endpoint, providing a powerful query interface for troubleshooting deployments and jobs.

Authorizations

Salad-Api-Key
string
header
required

Path Parameters

organization_name
string
required

Your organization name. This identifies the billing context for the API operation and represents a security boundary for SaladCloud resources. The organization must be created before using the API, and you must be a member of the organization.

Required string length: 2 - 63
Examples:

"acme-corp"

project_name
string
required

Your project name. This represents a collection of related SaladCloud resources. The project must be created before using the API.

Required string length: 2 - 63
Examples:

"dev-env"

container_group_name
string
required

The unique container group name

Required string length: 2 - 63
Examples:

"mandlebrot"

Response

OK

Represents a list of system logs

items
object[]
required

A list of system logs

Maximum length: 50