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

# Get Processor Version Detail

> Get detailed data for a specific processor version, including pipeline_params and eval_definition.



## OpenAPI

````yaml https://www.datalab.to/openapi.json get /api/v1/custom_processors/{processor_id}/versions/{version}
openapi: 3.1.0
info:
  title: Datalab API
  version: 0.0.1
servers:
  - url: https://www.datalab.to
    description: Datalab API
security: []
paths:
  /api/v1/custom_processors/{processor_id}/versions/{version}:
    get:
      tags:
        - Custom Processors
      summary: Get Processor Version Detail
      description: >-
        Get detailed data for a specific processor version, including
        pipeline_params and eval_definition.
      operationId: >-
        get_processor_version_detail_api_v1_custom_processors__processor_id__versions__version__get
      parameters:
        - name: processor_id
          in: path
          required: true
          schema:
            type: string
            title: Processor Id
        - name: version
          in: path
          required: true
          schema:
            type: integer
            title: Version
        - name: wos-session
          in: cookie
          required: false
          schema:
            type: string
            title: Wos-Session
        - name: datalab_active_team
          in: cookie
          required: false
          schema:
            type: string
            title: Datalab Active Team
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProcessorVersionDetailResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ProcessorVersionDetailResponse:
      properties:
        version:
          type: integer
          title: Version
          description: Version number
        request_description:
          type: string
          title: Request Description
          description: Description used for this version
        pipeline_params:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Pipeline Params
          description: Full pipeline parameters including modifications[]
        eval_definition:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Eval Definition
          description: Evaluation definition including evaluations[]
        runtime:
          anyOf:
            - type: number
            - type: 'null'
          title: Runtime
          description: Execution time in seconds
        created_at:
          type: string
          title: Created At
          description: ISO timestamp when version was created
        is_active:
          type: boolean
          title: Is Active
          description: Whether this is the currently active version
          default: false
      type: object
      required:
        - version
        - request_description
        - created_at
      title: ProcessorVersionDetailResponse
      description: Detailed version data including pipeline_params and eval_definition.
    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:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````