GET
/
api
/
v1
/
logs
/
{logId}
Get Specific Log
curl --request GET \
  --url {protocol}://{domain}/api/v1/logs/{logId} \
  --header 'Authorization: Bearer <token>'
{
  "log": {
    "id": "<string>",
    "source": "<string>",
    "ingestText": "<string>",
    "time": "2023-11-07T05:31:56Z",
    "processedAt": "2023-11-07T05:31:56Z",
    "episodeUUID": "<string>",
    "status": "pending",
    "error": "<string>",
    "sourceURL": "<string>",
    "integrationSlug": "<string>",
    "data": {}
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication supports:

  • Personal API tokens (PATs)
  • OAuth2 access tokens
  • JWT tokens

Example: Authorization: Bearer your_token_here

Path Parameters

logId
string
required

Log identifier

Response

Log details

log
object