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

# List Connector Jobs

> List connector jobs for the organization.



## OpenAPI

````yaml GET /orgs/{org_id}/connectors/jobs
openapi: 3.1.0
info:
  title: Timbal Platform API
  description: Public API documentation for the Timbal platform
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.timbal.ai
    description: Production
  - url: https://api.dev.timbal.ai
    description: Development
security: []
tags:
  - name: ace
    description: Action Control Engine (ACE) operations
  - name: analytics
    description: Project analytics
  - name: billing
    description: Subscriptions, usage, and payment-related operations
  - name: content
    description: Re-sign stored content URLs
  - name: files
    description: File operations
  - name: iam
    description: IAM — actions, roles, users, and authorization introspection
  - name: k2
    description: Knowledge Bases v2 operations
  - name: orgs
    description: Organization operations
  - name: projects
    description: Project operations
  - name: runs
    description: Execution operations
  - name: templates
    description: Public project template catalog
  - name: users
    description: Authenticated user profile
paths:
  /orgs/{org_id}/connectors/jobs:
    get:
      tags:
        - connectors
      summary: '`GET /orgs/{org_id}/connectors/jobs`'
      description: List connector jobs for the organization.
      operationId: list
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
        - name: connector_id
          in: query
          description: Filter to a single connector.
          required: false
          schema:
            type:
              - string
              - 'null'
      responses:
        '200':
          description: Jobs listed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListJobsRes'
        '403':
          description: Forbidden
      security:
        - bearer_auth: []
components:
  schemas:
    ListJobsRes:
      type: object
      required:
        - jobs
      properties:
        jobs:
          type: array
          items:
            $ref: '#/components/schemas/JobView'
    JobView:
      type: object
      required:
        - id
        - connector_id
        - kb_uid
        - dest_table
        - mode
        - state
        - rows_emitted
        - created_at
        - updated_at
      properties:
        connector_id:
          type: string
        created_at:
          type: string
          format: date-time
        dest_table:
          type: string
        duration_ms:
          type:
            - integer
            - 'null'
          format: int64
          description: Run duration in ms — to `finished_at`, or to "now" for a live run.
        finished_at:
          type:
            - string
            - 'null'
          format: date-time
          description: When the run reached a terminal state; `null` while still active.
        id:
          type: string
        kb_uid:
          type: string
        message:
          type:
            - string
            - 'null'
        mode:
          type: string
        rows_emitted:
          type: integer
          format: int64
        rows_per_sec:
          type:
            - number
            - 'null'
          format: double
          description: >-
            Average landed throughput over the run window; `null` until
            measurable.
        started_at:
          type:
            - string
            - 'null'
          format: date-time
          description: When the run first reported progress (excludes time queued).
        state:
          type: string
        sync_id:
          type:
            - string
            - 'null'
          description: >-
            Parent sync this run belongs to; `null` for one-off manual
            dispatches.
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: >-
        Timbal API key. Obtain your API key from the Timbal platform settings.
        See [Authentication](/api-reference/authentication) for more
        information.

````