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

> Get an agent test case by its ID



## OpenAPI

````yaml /api-reference/openapi.json get /tests/{test_uuid}
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:
  /tests/{test_uuid}:
    get:
      tags:
        - tests
      summary: Get test
      description: Get an agent test case by its ID
      operationId: get_test_endpoint_tests__test_uuid__get
      parameters:
        - name: test_uuid
          in: path
          required: true
          schema:
            type: string
            description: Test to retrieve
            examples:
              - b1c2d3e4-f5a6-7890-bcde-f12345678901
            title: Test Uuid
          description: Test to retrieve
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TestResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    TestResponse:
      properties:
        uuid:
          type: string
          maxLength: 36
          minLength: 36
          title: Uuid
          description: Unique ID for the test
          examples:
            - b1c2d3e4-f5a6-7890-bcde-f12345678901
        name:
          type: string
          title: Name
          description: Name of the test
        type:
          type: string
          enum:
            - response
            - tool_call
            - conversation
          title: Type
          description: |
            What the test judges:

            - `response`: judges the generated reply
            - `tool_call`: diffs the generated tool calls
            - `conversation`: judges the full conversation
        config:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          description: >-
            The stored config: `history`, `evaluation`, and an optional
            `settings`
        created_at:
          type: string
          title: Created At
          description: When the test was created (ISO 8601 UTC)
        updated_at:
          type: string
          title: Updated At
          description: When the test was last updated (ISO 8601 UTC)
        evaluators:
          items:
            additionalProperties: true
            type: object
          type: array
          description: >-
            Linked evaluators, resolved to their current live version at read
            time
          default: []
      type: object
      required:
        - uuid
        - name
        - type
        - created_at
        - updated_at
      title: TestResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````