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

# Get task summary

> Get a paginated summary table of items, evaluator runs, and human annotations for a task



## OpenAPI

````yaml /api-reference/openapi.json get /annotation-tasks/{task_uuid}/summary
openapi: 3.1.0
info:
  title: Calibrate Public API
  version: 0.1.0
  description: Programmatic API for CI/automation. Pass your key in the `X-API-Key` header.
servers:
  - url: https://api.calibrate.artpark.ai
    description: Production
security: []
paths:
  /annotation-tasks/{task_uuid}/summary:
    get:
      tags:
        - annotation-tasks
      summary: Get task summary
      description: >-
        Get a paginated summary table of items, evaluator runs, and human
        annotations for a task
      operationId: task_summary_annotation_tasks__task_uuid__summary_get
      parameters:
        - name: task_uuid
          in: path
          required: true
          schema:
            type: string
            description: Annotation task to act on
            examples:
              - f47ac10b-58cc-4372-a567-0e02b2c3d479
            title: Task Uuid
          description: Annotation task to act on
        - name: item_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Filter rows to a single item. The full task-wide annotator union
              is still returned in `annotators`
            title: Item Id
          description: >-
            Filter rows to a single item. The full task-wide annotator union is
            still returned in `annotators`
        - name: live_only
          in: query
          required: false
          schema:
            type: boolean
            description: >-
              When true, emit only one row for each (item, evaluator) pair using
              the evaluator's live version. Versions other than the live one
              that have runs are excluded
            default: false
            title: Live Only
          description: >-
            When true, emit only one row for each (item, evaluator) pair using
            the evaluator's live version. Versions other than the live one that
            have runs are excluded
        - name: disagreement_only
          in: query
          required: false
          schema:
            type: boolean
            description: >-
              When true, keep only rows where the evaluator disagreed with at
              least one annotator
            default: false
            title: Disagreement Only
          description: >-
            When true, keep only rows where the evaluator disagreed with at
            least one annotator
        - name: q
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Case-insensitive substring search on `payload.name`. Blank is a
              no-op
            title: Q
          description: >-
            Case-insensitive substring search on `payload.name`. Blank is a
            no-op
        - name: sort_by
          in: query
          required: false
          schema:
            type: string
            description: Sort key for the results
            default: created_at
            title: Sort By
          description: Sort key for the results
        - name: order
          in: query
          required: false
          schema:
            enum:
              - asc
              - desc
            type: string
            description: Sort direction
            default: desc
            title: Order
          description: Sort direction
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000000
            minimum: 1
            description: Maximum number of items to return
            default: 50
            title: Limit
          description: Maximum number of items to return
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Number of items to skip before returning results
            default: 0
            title: Offset
          description: Number of items to skip before returning results
        - name: compact
          in: query
          required: false
          schema:
            type: boolean
            description: >-
              Return a compact response that omits heavy detail fields
              (`rows.payload`, `rows.evaluator_reasoning`,
              `rows.annotations.reasoning`, `evaluators.versions.system_prompt`,
              `evaluators.versions.output_config`,
              `evaluators.versions.variables`, `item_comments`), keeping only
              the lightweight decision fields. Omit for full detail
            default: false
            title: Compact
          description: >-
            Return a compact response that omits heavy detail fields
            (`rows.payload`, `rows.evaluator_reasoning`,
            `rows.annotations.reasoning`, `evaluators.versions.system_prompt`,
            `evaluators.versions.output_config`,
            `evaluators.versions.variables`, `item_comments`), keeping only the
            lightweight decision fields. Omit for full detail
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskSummaryResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    TaskSummaryResponse:
      properties:
        task_id:
          type: string
          title: Task Id
          description: ID of the task
          examples:
            - f47ac10b-58cc-4372-a567-0e02b2c3d479
        task_type:
          type: string
          enum:
            - stt
            - llm
            - llm-general
            - conversation
            - tts
          title: Task Type
          description: Type of the task
        evaluators:
          items:
            additionalProperties: true
            type: object
          type: array
          description: >-
            The task's evaluators, stable across pages, each with its live
            rubric
        annotators:
          items:
            additionalProperties: true
            type: object
          type: array
          description: >-
            The annotators who labelled or commented on items in the task,
            stable across pages
        rows:
          items:
            additionalProperties: true
            type: object
          type: array
          description: >-
            One row per item, evaluator, and version on this page, with the
            evaluator's value and each annotator's label
        item_comments:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          description: Annotator comments, keyed by item ID
        pagination:
          $ref: '#/components/schemas/PaginationMeta'
          description: Where this page sits in the full item list
      additionalProperties: true
      type: object
      required:
        - task_id
        - task_type
        - evaluators
        - annotators
        - rows
        - pagination
      title: TaskSummaryResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PaginationMeta:
      properties:
        total:
          type: integer
          title: Total
          description: Total number of items that match, across all pages
        limit:
          type: integer
          title: Limit
          description: Maximum number of items returned in this page
        offset:
          type: integer
          title: Offset
          description: Number of items skipped before this page
      type: object
      required:
        - total
        - limit
        - offset
      title: PaginationMeta
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key for authentication

````