Skip to main content
GET
/
v1
/
accounts
/
{account_id}
/
evaluationJobs
/
{evaluation_job_id}
:getExecutionLogEndpoint
Get Evaluation Job execution logs (stream log endpoint + tracing IDs).
curl --request GET \
  --url https://api.fireworks.ai/v1/accounts/{account_id}/evaluationJobs/{evaluation_job_id}:getExecutionLogEndpoint \
  --header 'Authorization: Bearer <token>'
{
  "executionLogSignedUri": "<string>",
  "contentType": "<string>",
  "expireTime": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>

Path Parameters

account_id
string
required

The Account Id

evaluation_job_id
string
required

The Evaluation Job Id

Response

200 - application/json

A successful response.

Response carries the stream log URL (for VirtualizedLogViewer).

Next ID: 4

executionLogSignedUri
string

Short-lived signed URL for the execution log file. Empty if the log file has not been created yet (e.g. job not started or still initializing).

contentType
string

Content type for the log file (e.g. "text/plain"). Only set when execution_log_signed_uri is present.

expireTime
string<date-time>

Expiration time of the signed URL. Only set when execution_log_signed_uri is present.