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

# Get Jobs Timeline

> Retrieves a timeline of jobs grouped by tool name and target.



## OpenAPI

````yaml /api-reference/openapi.json get /api/jobs-registry/timeline
openapi: 3.0.0
info:
  title: Open Attack Surface Management
  description: Open-source platform for cybersecurity Attack Surface Management (ASM)
  version: '1.0'
  contact: {}
servers:
  - url: https://{baseUrl}/api/v1
    variables:
      baseUrl:
        default: localhost:3000
        description: API server hostname with port (e.g. localhost:3000, api.example.com)
security: []
tags: []
externalDocs:
  description: Authentication Docs
  url: auth/docs
paths:
  /api/jobs-registry/timeline:
    get:
      tags:
        - JobsRegistry
      summary: Get Jobs Timeline
      description: Retrieves a timeline of jobs grouped by tool name and target.
      operationId: JobsRegistryController_getJobsTimeline
      parameters:
        - name: X-Workspace-Id
          in: header
          description: Workspace ID
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobTimelineResponseDto'
                allOf:
                  - $ref: '#/components/schemas/AppResponseSerialization'
components:
  schemas:
    JobTimelineResponseDto:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/JobTimelineItem'
      required:
        - data
    JobTimelineItem:
      type: object
      properties:
        name:
          type: string
        target:
          type: string
        targetId:
          type: string
        jobHistoryId:
          type: string
        startTime:
          format: date-time
          type: string
        endTime:
          format: date-time
          type: string
        status:
          type: string
          enum:
            - pending
            - in_progress
            - completed
            - failed
            - cancelled
            - skipped
        description:
          type: string
        toolCategory:
          type: string
          enum:
            - subdomains
            - http_probe
            - ports_scanner
            - vulnerabilities
            - screenshot
            - classifier
            - assistant
        duration:
          type: number
      required:
        - name
        - target
        - targetId
        - jobHistoryId
        - startTime
        - endTime
        - status
        - description
        - toolCategory
        - duration

````