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

# Get inference results

> Get list of inference results with pagination and filtering. See [Inference Results](https://docs.galtea.ai/concepts/product/version/session/inference-result).



## OpenAPI

````yaml https://api.galtea.ai/openapi.json get /inferenceResults
openapi: 3.0.0
info:
  version: 1.0.0
  title: Product Management Service API
  description: API documentation for Product Management Service
  contact:
    name: Galtea AI
servers:
  - url: https://api.galtea.ai
security:
  - bearerAuth: []
tags: []
externalDocs:
  description: Galtea Platform Documentation
  url: https://docs.galtea.ai
paths:
  /inferenceResults:
    get:
      tags:
        - inference-results
      summary: Get inference results
      description: >-
        Get list of inference results with pagination and filtering. See
        [Inference
        Results](https://docs.galtea.ai/concepts/product/version/session/inference-result).
      operationId: getInferenceResults
      parameters:
        - name: ids
          in: query
          style: form
          explode: true
          description: Filter by inference result IDs
          required: false
          schema:
            type: array
            items:
              type: string
        - name: sessionIds
          in: query
          style: form
          explode: true
          description: Filter by session IDs
          required: false
          schema:
            type: array
            items:
              type: string
        - name: evaluationIds
          in: query
          style: form
          explode: true
          description: Filter by evaluation IDs
          required: false
          schema:
            type: array
            items:
              type: string
        - name: limit
          in: query
          description: Maximum number of results
          required: false
          schema:
            type: integer
        - name: offset
          in: query
          description: Number of results to skip
          required: false
          schema:
            type: integer
        - name: fromCreatedAt
          in: query
          description: >-
            Filter inference results created at or after this timestamp (ISO
            8601 format)
          required: false
          schema:
            type: string
            format: date-time
        - name: toCreatedAt
          in: query
          description: >-
            Filter inference results created at or before this timestamp (ISO
            8601 format)
          required: false
          schema:
            type: string
            format: date-time
        - name: sort
          in: query
          style: form
          explode: true
          description: Sort instructions (field and direction pairs)
          required: false
          schema:
            type: array
            items:
              type: string
      responses:
        '200':
          description: Inference results retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InferenceResult'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    InferenceResult:
      type: object
      properties:
        id:
          type: string
          example: ir_123
        sessionId:
          type: string
          example: session_123
        userId:
          type: string
          nullable: true
          example: user_123
        index:
          type: integer
          example: 0
          description: Order index within the session
        status:
          type: string
          enum:
            - PENDING
            - GENERATED
            - FAILED
            - SKIPPED
          example: PENDING
        error:
          type: string
          nullable: true
          description: >-
            Error message explaining why this inference result failed or was
            skipped
          example: null
        input:
          type: object
          nullable: true
          description: >-
            Structured input data. For plain text input, format is {
            user_message: "..." }
          example:
            user_message: User input text
        actualOutput:
          oneOf:
            - type: string
            - type: object
          nullable: true
          description: >-
            The agent turn output. Plain text by default (the scored scalar).
            For voice turns, an envelope { assistant_message, content: [{ type,
            uri, transcript }] } carrying audio parts — the scored scalar stays
            the canonical transcript.
          example: Model response
        latency:
          type: integer
          nullable: true
          example: 150
        inputTokens:
          type: integer
          nullable: true
          example: 100
        outputTokens:
          type: integer
          nullable: true
          example: 50
        cacheReadInputTokens:
          type: integer
          nullable: true
          example: 20
        tokens:
          type: integer
          nullable: true
          example: 150
          description: Total tokens
        costPerInputToken:
          type: number
          nullable: true
          example: 0.00001
        costPerOutputToken:
          type: number
          nullable: true
          example: 0.00003
        costPerCacheReadInputToken:
          type: number
          nullable: true
          example: 0.000005
        cost:
          type: number
          nullable: true
          example: 0.001
        creditsUsed:
          type: integer
          nullable: true
          example: 1
        conversationSimulatorVersion:
          type: string
          nullable: true
          example: 1.0.0
        traceId:
          type: string
          nullable: true
          example: a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4
          description: >-
            W3C trace ID for the root span created during direct inference. The
            same trace ID is propagated to the user endpoint via the traceparent
            header.
        createdAt:
          type: string
          format: date-time
        deletedAt:
          type: string
          format: date-time
          nullable: true
    Error:
      type: object
      properties:
        error:
          type: string
          example: Error type
        message:
          type: string
          example: Error message description
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key authorization. Pass your API key in the Authorization header as
        a Bearer token. Both new (`gsk_*`) and legacy (`gsk-`) API keys are
        accepted, e.g. `Authorization: Bearer gsk_...` or `Authorization: Bearer
        gsk-...`.

````