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

# Export evaluation results as TSV file

> Exports comprehensive evaluation results as a Tab-Separated Values (TSV) file with all scored pairs, their scores, reasons, and labels for analysis in spreadsheet applications. All scored pairs data is automatically collected and stored during evaluation.



## OpenAPI

````yaml https://raw.githubusercontent.com/getplumai/docs/refs/heads/main/api-reference/openapi.yaml get /evaluation/{id}/export_tsv
openapi: 3.0.0
info:
  title: Plum API
  version: 1.1.0
servers:
  - url: https://beta.getplum.ai/v1
security: []
paths:
  /evaluation/{id}/export_tsv:
    get:
      summary: Export evaluation results as TSV file
      description: >-
        Exports comprehensive evaluation results as a Tab-Separated Values (TSV)
        file with all scored pairs, their scores, reasons, and labels for
        analysis in spreadsheet applications. All scored pairs data is
        automatically collected and stored during evaluation.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: ID of the evaluation results to export
      responses:
        '200':
          description: Successfully exported evaluation results as TSV
          content:
            text/tab-separated-values:
              schema:
                type: string
                description: >-
                  TSV file with columns - pair_id, pair_input, pair_output,
                  pair_labels, then for each metric - {metric_name}_score,
                  {metric_name}_reason
              example: "pair_id\tpair_input\tpair_output\tpair_labels\thelpfulness_score\thelpfulness_reason\taccuracy_score\taccuracy_reason\n1704067200001\tWhat is the capital of France?\tThe capital of France is Paris.\tgeography,factual\t4.50\tProvides direct and accurate answer\t5.00\tCompletely accurate information\n1704067200002\tExplain quantum physics\tQuantum physics is very complicated...\tphysics,complex\t2.00\tToo vague and unhelpful\t2.50\tLacks specific details and accuracy\n"
          headers:
            Content-Disposition:
              description: Attachment header for file download
              schema:
                type: string
                example: attachment; filename="eval_results_1704067200123.tsv"
        '400':
          description: Bad request - evaluation results id is required
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: results id cannot be empty
        '404':
          description: No comprehensive scoring data available for this evaluation
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: no detailed scoring data available for this evaluation
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: 'failed to get eval results: please try again later'
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization

````