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

# Get specific thread evaluation by ID

> Retrieves detailed information about a specific evaluation, including score and feedback.



## OpenAPI

````yaml GET /v1/agents/threads/{threadId}/evaluations/{evaluationId}
openapi: 3.0.0
info:
  title: Devic.ai Public API
  description: >-
    Devic.ai is an AI platform that allows you to create, manage, and use AI
    agents for various tasks.
  version: 1.0.0
  contact:
    name: Devic.ai Support
    url: https://devic.ai
  x-logo:
    url: https://devic.ai/logo.png
    altText: Devic.ai Logo
  x-summary: Public API for interacting with Devic.ai platform
servers:
  - url: https://api.devic.ai
    description: Production server
  - url: https://staging-api.devic.ai
    description: Staging server
security:
  - bearerAuth: []
tags:
  - name: Projects
    description: Group agents, assistants, documents and costs into projects
  - name: Documents
    description: >-
      Knowledge base documents: create, version, attach and index markdown
      content for RAG
  - name: Document Folders
    description: Organise knowledge base documents into folders and attach them in bulk
  - name: Files
    description: Upload files and obtain shareable download URLs to attach to messages
  - name: Agents
    description: Endpoints related to AI agents and their operations
  - name: Assistants
    description: Endpoints for interacting with assistants and their specializations
  - name: Tool Servers
    description: Endpoints for managing tool servers and their tool definitions
  - name: Health
    description: API health check endpoints
  - name: Documentation
    description: Endpoints for retrieving markdown documentation
paths:
  /v1/agents/threads/{threadId}/evaluations/{evaluationId}:
    get:
      tags:
        - Agents
      summary: Get a specific evaluation by ID
      description: >-
        Retrieves detailed information about a specific evaluation, including
        score and feedback.
      operationId: getThreadEvaluationById
      parameters:
        - name: threadId
          in: path
          required: true
          description: UUID of the thread associated with the evaluation
          schema:
            type: string
            format: uuid
        - name: evaluationId
          in: path
          required: true
          description: UUID of the evaluation to retrieve
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Evaluation details retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Evaluation'
        '401':
          description: Unauthorized - Invalid or missing token
        '404':
          description: Evaluation not found
        '429':
          description: Too Many Requests - Rate limit exceeded
        '500':
          description: Internal Server Error
      security:
        - bearerAuth: []
components:
  schemas:
    Evaluation:
      type: object
      required:
        - id
        - threadId
        - score
        - status
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the evaluation
        threadId:
          type: string
          format: uuid
          description: Identifier for the evaluated thread
        score:
          type: number
          format: float
          description: Evaluation score between 0 and 1
        status:
          $ref: '#/components/schemas/EvaluationStatus'
        feedback:
          type: string
          description: Detailed feedback or explanation of the evaluation
        createdAt:
          type: string
          format: date-time
          description: Timestamp of when the evaluation was created
    EvaluationStatus:
      type: string
      enum:
        - PENDING
        - COMPLETED
        - FAILED
      description: Status of an evaluation run
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use JWT token for authentication

````