Skip to main content
GET
Get log
Returns one log. The response is the same object List logs returns, so use this when you already have a log ID and do not want to page.

Endpoint

Path Parameters

Example Request

Response

See List logs for the full field reference.

Errors

A 404 for an aged-out log includes the window in the response so you can tell it apart from a genuinely unknown ID:

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

log_id
string
required

The log ID.

Response

Log returned.

id
string
required

Log ID.

operation_id
string
required

Markifact operation that ran.

Example:

"gads_get_campaigns"

status
enum<string>
required
Available options:
success,
error,
skipped,
stop,
start
source
object
required
user
object
required
started_at
integer<int64>
required

Start time in Unix seconds.

Example:

1784874174

credits_used
integer
required
cache_hit
boolean
required

Whether the result came from cache instead of the provider.

metadata
object
required

Extra context. Keys depend on the source: node_id, node_label, and retry_attempts for workflows, tool_name for MCP.

operation_version
integer | null
completed_at
integer<int64> | null

Completion time in Unix seconds. Null while the operation is still running.

input
any

Input the operation ran with. Shape depends on the operation.

output
any

Result the operation returned, or the error payload when status is error. Shape depends on the operation.