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

# List scoring jobs

> List confidence scoring jobs, optionally filtered by identity context fields. All filters are combined with AND logic.



## OpenAPI

````yaml /api-v2.json get /confidence-scoring/jobs
openapi: 3.1.0
info:
  title: Meibel AI API
  summary: Meibel Gateway Service
  description: >-
    Our API allows you to interact with our services. Read the
    [docs](https://docs.meibel.ai) to learn how to use it.
  version: 0.6.4
servers:
  - url: https://api.meibel.ai/v2
    description: Meibel API (v2)
  - url: https://api.dev.meibel.ai/v2
    description: Meibel Dev API (v2)
  - url: http://localhost:8000/v2
    description: Local Development
security: []
tags:
  - name: Datasources
    description: v2 datasource management
  - name: Data Elements
    description: v2 data element CRUD and search
  - name: File Upload
    description: Upload files to a datasource and track upload progress
  - name: Ingest
    description: Trigger and monitor datasource ingestion
  - name: Datasource Downloads
    description: Export all datasource content as a zip archive
  - name: Table Descriptions
    description: v2 table and column descriptions
  - name: Metadata Model Catalog
    description: v2 metadata model catalog
  - name: Confidence Scoring
    description: v2 confidence scoring jobs and summaries
  - name: Documents
    description: Parse and transform documents into structured data
  - name: Agents
    description: Agent definition management
  - name: Sessions
    description: Agent session (execution) management and chat
  - name: Artifact Schemas
    description: Agent artifact schema management
paths:
  /confidence-scoring/jobs:
    get:
      tags:
        - Confidence Scoring
      summary: List scoring jobs
      description: >-
        List confidence scoring jobs, optionally filtered by identity context
        fields. All filters are combined with AND logic.
      operationId: listScoringJobs
      parameters:
        - name: agent_name
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by agent name.
            title: Agent Name
          description: Filter by agent name.
        - name: agent_version
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by agent version.
            title: Agent Version
          description: Filter by agent version.
        - name: agent_session_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by agent session ID.
            title: Agent Session Id
          description: Filter by agent session ID.
        - name: agent_workflow_name
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by workflow name.
            title: Agent Workflow Name
          description: Filter by workflow name.
        - name: agent_workflow_version
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by workflow version.
            title: Agent Workflow Version
          description: Filter by workflow version.
        - name: agent_workflow_session_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by workflow session ID.
            title: Agent Workflow Session Id
          description: Filter by workflow session ID.
        - name: tool_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by tool identifier.
            title: Tool Id
          description: Filter by tool identifier.
        - name: tool_instance_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by tool instance identifier.
            title: Tool Instance Id
          description: Filter by tool instance identifier.
        - name: tool_execution_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by tool execution identifier.
            title: Tool Execution Id
          description: Filter by tool execution identifier.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScoringJobResponse'
                title: Response Listscoringjobs
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
      x-codeSamples:
        - lang: Python
          label: Python
          source: |-
            from meibel import MeibelClient

            client = MeibelClient(api_key="your-api-key")

            result = client.confidence_scoring.list_scoring_jobs()
            print(result)
        - lang: TypeScript
          label: TypeScript
          source: |-
            import { MeibelClient } from 'meibel';

            const client = new MeibelClient({ apiKey: 'your-api-key' });

            const result = await client.confidenceScoring.listScoringJobs();
            console.log(result);
        - lang: Go
          label: Go
          source: |-
            import v2 "github.com/meibel-ai/meibel-go/v2"

            client := v2.NewClient(v2.WithAPIKey("your-api-key"))
            ctx := context.Background()

            result, err := client.ConfidenceScoring.ListScoringJobs(ctx)
            if err != nil {
                log.Fatal(err)
            }
            fmt.Println(result)
components:
  schemas:
    ScoringJobResponse:
      properties:
        job_id:
          type: string
          title: Job Id
          description: Unique identifier for this scoring job.
        agent_identity_context:
          $ref: '#/components/schemas/AgentIdentityContext'
          description: >-
            The agent, workflow, and tool context that produced the scored
            output.
        module:
          type: string
          title: Module
          description: >-
            The scoring module used to evaluate the output. Judge-based modules
            (e.g. correctness, coherence, faithfulness) produce scores on a 0–10
            scale. Statistical modules (e.g. observed_consistency,
            data_grounding) produce scores on a 0.0–1.0 scale.
        status:
          type: string
          title: Status
          description: >-
            Current status of the scoring job: submitted, in_progress,
            completed, failed, or not_run.
        score:
          anyOf:
            - type: number
            - type: integer
            - type: 'null'
          title: Score
          description: >-
            The computed confidence score, or null if the job has not completed.
            Range depends on the module: 0–10 (integer) for judge-based modules,
            0.0–1.0 for statistical modules.
        explanation:
          anyOf:
            - type: string
            - type: 'null'
          title: Explanation
          description: Human-readable explanation of the score.
      type: object
      required:
        - job_id
        - agent_identity_context
        - module
        - status
      title: ScoringJobResponse
      description: A confidence scoring job record with metadata and scores only.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AgentIdentityContext:
      properties:
        customer_id:
          type: string
          title: Customer Id
          description: Your customer identifier.
        project_id:
          type: string
          title: Project Id
          description: The project this scoring job belongs to.
        agent_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Agent Name
          description: Name of the agent that produced the scored output.
        agent_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Agent Version
          description: Version of the agent that produced the scored output.
        agent_session_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Agent Session Id
          description: >-
            Unique identifier for the agent session that produced the scored
            output.
        agent_turn:
          anyOf:
            - type: integer
            - type: 'null'
          title: Agent Turn
          description: The agent turn number within the session, if applicable.
        agent_workflow_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Agent Workflow Name
          description: Name of the workflow the agent is part of, if applicable.
        agent_workflow_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Agent Workflow Version
          description: Version of the workflow the agent is part of.
        agent_workflow_session_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Agent Workflow Session Id
          description: >-
            Unique identifier for the workflow session, if the agent runs within
            a workflow.
        batch_definition_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Batch Definition Id
          description: >-
            Identifier of the batch definition this job belongs to, if
            applicable.
        batch_execution_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Batch Execution Id
          description: >-
            Identifier of the batch execution this job belongs to, if
            applicable.
        tool_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Tool Id
          description: >-
            Identifier of the tool that produced the scored output, if
            applicable.
        tool_instance_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Tool Instance Id
          description: Identifier of the specific tool instance.
        tool_execution_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Tool Execution Id
          description: >-
            Unique identifier for the tool execution that produced the scored
            output.
      type: object
      required:
        - customer_id
        - project_id
      title: AgentIdentityContext
      description: >-
        Identifies the agent, workflow, and tool context that produced the
        scored output.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: Meibel-API-Key

````