Skip to main content
GET
/
applications
/
{id}
/
runtime-logs
Get application runtime logs
curl --request GET \
  --url https://api.sevalla.com/v3/applications/{id}/runtime-logs \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "abc123",
    "message": "Server started on port 3000",
    "service": "APP_RUNTIME",
    "severity": "INFO",
    "timestamp": "2026-02-22 15:30:00.000",
    "tags": {
      "idApp": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
      "container": "web"
    },
    "attributes": {},
    "unix_timestamp": 1740236400000000
  }
]

Authorizations

Authorization
string
header
required

API key authentication. Pass your API key as a Bearer token in the Authorization header.

Path Parameters

id
string<uuid>
required

Application identifier

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
Example:

"fb5e5168-4281-4bec-94c5-0d1584e9e657"

Query Parameters

from
string<date-time>

Start of the time range in ISO 8601 format. Defaults to 1 hour ago if not provided.

Pattern: ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
Example:

"2026-02-22T14:30:00.000Z"

to
string<date-time>

End of the time range in ISO 8601 format. Defaults to now if not provided.

Pattern: ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
Example:

"2026-02-22T15:30:00.000Z"

filters
string

JSON-encoded array of filter objects for advanced log filtering. Each filter has a key, operator, and value or values field. Example: [{"key":"severity","operator":"EQUALS","value":"ERROR"}]

Example:

"[{\"key\":\"severity\",\"operator\":\"EQUALS\",\"value\":\"ERROR\"}]"

limit
integer
default:1000

Maximum number of log entries to return (1-5000)

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

1000

Response

Default Response

id
string
required

Unique identifier for the log entry

Example:

"abc123"

message
string
required

Log message content

Example:

"Server started on port 3000"

service
string
required

Service that produced the log entry, such as APP_RUNTIME, APP_ACCESS, APP_DEPLOYMENT, SS_DEPLOYMENT, or SS_ACCESS

Example:

"APP_RUNTIME"

severity
string
required

Log severity level such as INFO, WARN, ERROR, or DEBUG

Example:

"INFO"

timestamp
string
required

Formatted timestamp of the log entry

Example:

"2026-02-22 15:30:00.000"

tags
object
required

Key-value pairs of tags associated with the log entry, such as container name or resource ID

Example:
{
"idApp": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
"container": "web"
}
attributes
object
required

Additional structured attributes attached to the log entry

Example:
{}
unix_timestamp
number
required

Unix timestamp of the log entry in microseconds

Example:

1740236400000000