Skip to main content
GET
/
sentinel
/
jobs
List Sentinel jobs for the current team
curl --request GET \
  --url https://lens-api.tic.io/sentinel/jobs \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "sentinelJobGuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "filename": "<string>",
      "status": "<string>",
      "stage": "<string>",
      "progress": 123,
      "pageCount": 123,
      "riskScore": 123,
      "riskLevel": "<string>",
      "verdictSummary": "<string>",
      "errorMessage": "<string>",
      "fileSizeBytes": 123,
      "createdAtUtc": "2023-11-07T05:31:56Z",
      "completedAtUtc": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Authorizations

x-api-key
string
header
required

Query Parameters

status
string

Optional status filter: "pending", "processing", "completed", or "failed"

limit
integer<int32>
default:20

Maximum number of jobs to return (1–100). Default 20.

offset
integer<int32>
default:0

Number of jobs to skip for pagination. Default 0.

Response

200 - application/json

Paginated job list with total count

items
null | object[]
total
integer<int32>
limit
integer<int32>
offset
integer<int32>