> ## 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.

# Get Sentinel job status and report

> Returns full job details including the analysis report when completed. If the job is still processing, the backend is polled and the local status is refreshed before returning.

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


## OpenAPI

````yaml get /sentinel/jobs/{guid}
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/{guid}:
    get:
      tags:
        - Sentinel
      summary: Get Sentinel job status and report
      description: >-
        Returns full job details including the analysis report when completed.
        If the job is still processing, the backend is polled and the local
        status is refreshed before returning.
      operationId: GetSentinelJob
      parameters:
        - name: guid
          in: path
          description: SentinelJobGuid returned from /analyze
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Job details (Report populated once completed)
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelJobDetail_Dto
        '404':
          description: Job not found in this team
components:
  schemas:
    Ormeo_Web_Lens_Models_Sentinel_SentinelJobDetail_Dto:
      type: object
      properties:
        report:
          $ref: >-
            #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelJobResponse_Dto
        language:
          type:
            - 'null'
            - string
        webhook:
          $ref: >-
            #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelWebhookInfo_Dto
        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
    Ormeo_Web_Lens_Models_Sentinel_SentinelJobResponse_Dto:
      type: object
      properties:
        status:
          type:
            - 'null'
            - string
        stage:
          type:
            - 'null'
            - string
        progress:
          type: number
          format: double
        filename:
          type:
            - 'null'
            - string
        createdAt:
          type:
            - 'null'
            - string
        completedAt:
          type:
            - 'null'
            - string
        error:
          type:
            - 'null'
            - string
        report:
          $ref: >-
            #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelAnalysisReport_Dto
        annotations:
          type:
            - 'null'
            - object
          additionalProperties:
            type: string
        webhook:
          $ref: >-
            #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelWebhookInfo_Dto
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelWebhookInfo_Dto:
      type: object
      properties:
        url:
          type:
            - 'null'
            - string
        status:
          type:
            - 'null'
            - string
        event:
          type:
            - 'null'
            - string
        attemptCount:
          type: integer
          format: int32
        maxAttempts:
          type: integer
          format: int32
        nextRetryAt:
          type:
            - 'null'
            - string
        lastAttemptAt:
          type:
            - 'null'
            - string
        lastStatusCode:
          type:
            - 'null'
            - integer
          format: int32
        lastError:
          type:
            - 'null'
            - string
        createdAt:
          type:
            - 'null'
            - string
        completedAt:
          type:
            - 'null'
            - string
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelAnalysisReport_Dto:
      type: object
      properties:
        format:
          type:
            - 'null'
            - string
        contentType:
          type:
            - 'null'
            - string
        imageWidth:
          type: integer
          format: int32
        imageHeight:
          type: integer
          format: int32
        metadata:
          $ref: >-
            #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelImageMetadata_Dto
        verdict:
          $ref: >-
            #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelVerdict_Dto
        keyFindings:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelKeyFinding_Dto
        findings:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelFinding_Dto
        riskScore:
          type: number
          format: double
        riskLevel:
          type:
            - 'null'
            - string
        explanation:
          $ref: >-
            #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelForensicExplanation_Dto
        annotations:
          type:
            - 'null'
            - object
          additionalProperties:
            type: string
        vlmStagesCompleted:
          type:
            - 'null'
            - array
          items:
            type: integer
            format: int32
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelImageMetadata_Dto:
      type: object
      properties:
        device:
          $ref: >-
            #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelDeviceInfo_Dto
        gps:
          $ref: >-
            #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelGpsInfo_Dto
        timestamps:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelTimestampEntry_Dto
        tags:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelMetadataTag_Dto
        pdf:
          $ref: >-
            #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelPdfInfo_Dto
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelVerdict_Dto:
      type: object
      properties:
        riskScore:
          type: number
          format: double
        riskLevel:
          type:
            - 'null'
            - string
        summary:
          type:
            - 'null'
            - string
        confidence:
          type: number
          format: double
        corroboratingStages:
          type: integer
          format: int32
        vlmManipulationProbability:
          type:
            - 'null'
            - number
          format: double
        vlmAssessmentConfidence:
          type:
            - 'null'
            - number
          format: double
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelKeyFinding_Dto:
      type: object
      properties:
        title:
          type:
            - 'null'
            - string
        description:
          type:
            - 'null'
            - string
        severity:
          type:
            - 'null'
            - string
        confidence:
          type: number
          format: double
        sources:
          type:
            - 'null'
            - array
          items:
            type: string
        region:
          $ref: >-
            #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelRegion_Dto
        vlmConfirmed:
          type: boolean
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelFinding_Dto:
      type: object
      properties:
        source:
          type:
            - 'null'
            - string
        code:
          type:
            - 'null'
            - string
        description:
          type:
            - 'null'
            - string
        severity:
          type:
            - 'null'
            - string
        confidence:
          type: number
          format: double
        region:
          $ref: >-
            #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelRegion_Dto
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelForensicExplanation_Dto:
      type: object
      properties:
        summary:
          type:
            - 'null'
            - string
        visualReview:
          type:
            - 'null'
            - string
        categories:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Web_Lens_Models_Sentinel_SentinelExplanationCategory_Dto
        crossCorroboration:
          type:
            - 'null'
            - string
        antiForensicsWarning:
          type:
            - 'null'
            - string
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelDeviceInfo_Dto:
      type: object
      properties:
        make:
          type:
            - 'null'
            - string
        model:
          type:
            - 'null'
            - string
        software:
          type:
            - 'null'
            - string
        lens:
          type:
            - 'null'
            - string
        serial:
          type:
            - 'null'
            - string
        focalLength:
          type:
            - 'null'
            - string
        aperture:
          type:
            - 'null'
            - string
        iso:
          type:
            - 'null'
            - string
        exposure:
          type:
            - 'null'
            - string
        flash:
          type:
            - 'null'
            - string
        fileSource:
          type:
            - 'null'
            - string
        sceneType:
          type:
            - 'null'
            - string
        orientation:
          type:
            - 'null'
            - string
        colorSpace:
          type:
            - 'null'
            - string
        dpi:
          type:
            - 'null'
            - string
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelGpsInfo_Dto:
      type: object
      properties:
        latitude:
          type:
            - 'null'
            - number
          format: double
        longitude:
          type:
            - 'null'
            - number
          format: double
        altitude:
          type:
            - 'null'
            - string
        timestamp:
          type:
            - 'null'
            - string
        datum:
          type:
            - 'null'
            - string
        direction:
          type:
            - 'null'
            - string
        positionRaw:
          type:
            - 'null'
            - string
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelTimestampEntry_Dto:
      type: object
      properties:
        field:
          type:
            - 'null'
            - string
        value:
          type:
            - 'null'
            - string
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelMetadataTag_Dto:
      type: object
      properties:
        group:
          type:
            - 'null'
            - string
        tag:
          type:
            - 'null'
            - string
        value:
          type:
            - 'null'
            - string
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelPdfInfo_Dto:
      type: object
      properties:
        creator:
          type:
            - 'null'
            - string
        producer:
          type:
            - 'null'
            - string
        author:
          type:
            - 'null'
            - string
        title:
          type:
            - 'null'
            - string
        subject:
          type:
            - 'null'
            - string
        keywords:
          type:
            - 'null'
            - string
        createDate:
          type:
            - 'null'
            - string
        modifyDate:
          type:
            - 'null'
            - string
        pageCount:
          type: integer
          format: int32
        pagesRendered:
          type: integer
          format: int32
        embeddedImages:
          type: integer
          format: int32
        pdfVersion:
          type:
            - 'null'
            - string
        hasIncrementalSaves:
          type: boolean
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelRegion_Dto:
      type: object
      properties:
        x:
          type:
            - 'null'
            - integer
          format: int32
        'y':
          type:
            - 'null'
            - integer
          format: int32
        width:
          type:
            - 'null'
            - integer
          format: int32
        height:
          type:
            - 'null'
            - integer
          format: int32
        points:
          type:
            - 'null'
            - array
          items:
            type: array
            items:
              type: integer
              format: int32
      additionalProperties: false
    Ormeo_Web_Lens_Models_Sentinel_SentinelExplanationCategory_Dto:
      type: object
      properties:
        name:
          type:
            - 'null'
            - string
        findingCount:
          type: integer
          format: int32
        maxSeverity:
          type:
            - 'null'
            - string
        explanation:
          type:
            - 'null'
            - string
        findingCodes:
          type:
            - 'null'
            - array
          items:
            type: string
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````