> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tic.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List Sentinel jobs for the current team

> Returns a paginated list of forensic analysis jobs for the caller's team, ordered by creation date descending. Optionally filter by status.

<Badge color="orange" size="sm">Sentinel add-on</Badge>


## OpenAPI

````yaml get /sentinel/jobs
openapi: 3.1.1
info:
  title: TIC Lens API
  description: "The TIC Lens API provides programmatic access to company, person, property, vehicle, and order data.\r\n\r\n## Authentication\r\n\r\nAll requests require an API key passed via the `x-api-key` header:\r\n\r\n```bash\r\ncurl -H \"x-api-key: YOUR_API_KEY\" https://lens-api.tic.io/companies/123\r\n```\r\n\r\nAPI keys are managed through the TIC Lens web application under **Settings → API Keys**.\r\n\r\n## Base URL\r\n\r\n| Environment | URL |\r\n|-------------|-----|\r\n| Production  | `https://lens-api.tic.io` |\r\n\r\n## Feature Access\r\n\r\nEndpoints are gated by your subscription plan. If your plan does not include a feature, the endpoint will return `403 Forbidden`.\r\n\r\n## Rate Limits\r\n\r\nRate limits are applied per API key. If you exceed the limit, requests will return `429 Too Many Requests`.\r\n\r\n## Response Format\r\n\r\nAll responses are JSON. Null values are omitted from responses.\r\n"
  version: v1
servers:
  - url: https://lens-api.tic.io
security:
  - ApiKey: []
tags:
  - name: Addresses
  - name: Bolagsverket
  - name: Brf
  - name: Companies
  - name: Documents
  - name: FlightImages
  - name: Free
  - name: Orders
  - name: OrdersExports
  - name: PaymentControl
  - name: PaymentControlImport
  - name: Persons
  - name: Properties
  - name: PublicSearch
  - name: SearchAutocomplete
  - name: Sentinel
  - name: ServingPermits
  - name: Team
  - name: Teams
  - name: Transportstyrelsen
  - name: Vehicles
  - name: WatchList
paths:
  /sentinel/jobs:
    get:
      tags:
        - Sentinel
      summary: List Sentinel jobs for the current team
      description: >-
        Returns a paginated list of forensic analysis jobs for the caller's
        team, ordered by creation date descending. Optionally filter by status.
      operationId: ListSentinelJobs
      parameters:
        - name: status
          in: query
          description: >-
            Optional status filter: "pending", "processing", "completed", or
            "failed"
          schema:
            type: string
        - name: limit
          in: query
          description: Maximum number of jobs to return (1–100). Default 20.
          schema:
            type: integer
            format: int32
            default: 20
        - name: offset
          in: query
          description: Number of jobs to skip for pagination. Default 0.
          schema:
            type: integer
            format: int32
            default: 0
      responses:
        '200':
          description: Paginated job list with total count
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelJobListResponse_Dto
components:
  schemas:
    Ormeo_Web_Lens_Models_Sentinel_SentinelJobListResponse_Dto:
      type: object
      properties:
        items:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelJobList_Dto
        total:
          type: integer
          format: int32
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelJobList_Dto:
      type: object
      properties:
        sentinelJobGuid:
          type: string
          format: uuid
        filename:
          type:
            - 'null'
            - string
        status:
          type:
            - 'null'
            - string
        stage:
          type:
            - 'null'
            - string
        progress:
          type: number
          format: double
        pageCount:
          type:
            - 'null'
            - integer
          format: int32
        riskScore:
          type:
            - 'null'
            - number
          format: double
        riskLevel:
          type:
            - 'null'
            - string
        verdictSummary:
          type:
            - 'null'
            - string
        errorMessage:
          type:
            - 'null'
            - string
        fileSizeBytes:
          type:
            - 'null'
            - integer
          format: int64
        createdAtUtc:
          type: string
          format: date-time
        completedAtUtc:
          type:
            - 'null'
            - string
          format: date-time
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````