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

# List dataset entries



## OpenAPI

````yaml /openapi/model-distillation/management.openapi.yaml get /tasks/{alias}/datasets/{datasetId}/entries
openapi: 3.1.0
info:
  title: Model Distillation Management API
  version: 1.0.0
  description: |
    Manage providers, tasks, routing versions, datasets, relabeling, fine-tunes,
    evaluations, analytics, and closed-loop training Automation. This is the
    same API used by Model Distillation Studio.
servers:
  - url: https://distillation.training.wandb.ai/v1
    description: Production
security:
  - WandbApiKey: []
tags:
  - name: Providers
    description: OpenAI-compatible endpoints, credentials, model catalogs, and pricing.
  - name: Tasks
    description: Stable task identity and task-level information.
  - name: Routing
    description: Versioned model targets, weights, and request parameters.
  - name: Datasets
    description: >-
      Reproducible data snapshots, entries, relabeling, and reusable model
      outputs.
  - name: Fine-tunes
    description: Supervised fine-tuning jobs and hosted model artifacts.
  - name: Evaluations
    description: Head-to-head, exact-match, and categorization evaluations.
  - name: Automation
    description: Closed-loop dataset, sweep, evaluation, and promotion runs.
  - name: Analytics
    description: Task traffic, token, error, and estimated-cost read models.
  - name: Studio preferences
    description: Per-task display preferences used by Studio.
paths:
  /tasks/{alias}/datasets/{datasetId}/entries:
    parameters:
      - $ref: '#/components/parameters/WandbEntity'
      - $ref: '#/components/parameters/TaskAlias'
      - $ref: '#/components/parameters/DatasetId'
    get:
      tags:
        - Datasets
      summary: List dataset entries
      operationId: listDatasetEntries
      parameters:
        - name: page
          in: query
          description: One-based result page. Defaults to 1.
          required: false
          schema:
            default: 1
            type: integer
            exclusiveMinimum: 0
            maximum: 9007199254740991
        - name: limit
          in: query
          description: Entries per page. Defaults to 50; maximum 200.
          required: false
          schema:
            default: 50
            type: integer
            minimum: 1
            maximum: 200
        - name: filters
          in: query
          description: JSON-encoded dataset-entry filter array.
          required: false
          content:
            application/json:
              schema:
                default: []
                maxItems: 10
                type: array
                items:
                  oneOf:
                    - type: object
                      properties:
                        field:
                          type: string
                          const: entry_id
                        operator:
                          type: string
                          enum:
                            - equals
                            - not_equals
                        value:
                          type: string
                          pattern: ^[A-Za-z0-9_-]{22}$
                      required:
                        - field
                        - operator
                        - value
                      additionalProperties: false
                    - type: object
                      properties:
                        field:
                          type: string
                          enum:
                            - input
                            - original_output
                        operator:
                          type: string
                          enum:
                            - contains
                            - not_contains
                        value:
                          type: string
                          minLength: 1
                          maxLength: 500
                      required:
                        - field
                        - operator
                        - value
                      additionalProperties: false
                    - type: object
                      properties:
                        field:
                          type: string
                          const: relabel_status
                        operator:
                          type: string
                          enum:
                            - equals
                            - not_equals
                        value:
                          type: string
                          enum:
                            - pending
                            - processing
                            - relabeled
                            - unchanged
                            - errored
                      required:
                        - field
                        - operator
                        - value
                      additionalProperties: false
                    - type: object
                      properties:
                        field:
                          type: string
                          const: split
                        operator:
                          type: string
                          enum:
                            - equals
                            - not_equals
                        value:
                          type: string
                          enum:
                            - train
                            - val
                      required:
                        - field
                        - operator
                        - value
                      additionalProperties: false
                    - type: object
                      properties:
                        field:
                          type: string
                          const: eval_applied
                        operator:
                          type: string
                          enum:
                            - equals
                            - not_equals
                        value:
                          type: string
                          format: uuid
                          pattern: >-
                            ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                      required:
                        - field
                        - operator
                        - value
                      additionalProperties: false
        - name: relabel_run_id
          in: query
          description: Return outputs from this relabel run.
          required: false
          schema:
            type: string
            format: uuid
            pattern: >-
              ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
        - name: eval_sort
          in: query
          description: JSON-encoded evaluation sort configuration.
          required: false
          content:
            application/json:
              schema:
                type: object
                properties:
                  eval_id:
                    type: string
                    format: uuid
                    pattern: >-
                      ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                  output_key:
                    type: string
                    minLength: 1
                    maxLength: 500
                  direction:
                    type: string
                    enum:
                      - asc
                      - desc
                required:
                  - eval_id
                  - output_key
                  - direction
                additionalProperties: false
        - name: critical_failure_eval_id
          in: query
          description: >-
            Evaluation whose critical failures should be returned. Use with
            critical_failure_output_key.
          required: false
          schema:
            type: string
            format: uuid
            pattern: >-
              ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
        - name: critical_failure_output_key
          in: query
          description: >-
            Output key whose critical failures should be returned. Use with
            critical_failure_eval_id.
          required: false
          schema:
            type: string
            minLength: 1
            maxLength: 600
        - name: eval_result_id
          in: query
          description: Return the dataset entry associated with this evaluation result.
          required: false
          schema:
            type: string
            format: uuid
            pattern: >-
              ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
        - name: output_keys
          in: query
          description: JSON-encoded array of output keys to include.
          required: false
          content:
            application/json:
              schema:
                maxItems: 100
                type: array
                items:
                  type: string
                  minLength: 1
        - name: version
          in: query
          description: Read entries from a specific immutable dataset version.
          required: false
          schema:
            type: integer
            minimum: 0
            maximum: 9007199254740991
      responses:
        '200':
          description: Paginated dataset entries and attached outputs/results.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DatasetEntryPage'
        default:
          $ref: '#/components/responses/Error'
components:
  parameters:
    WandbEntity:
      name: Wandb-Entity
      in: header
      required: false
      description: >-
        Accessible personal or team entity. Omit to use the API key's default
        entity.
      schema:
        type: string
    TaskAlias:
      name: alias
      in: path
      required: true
      schema:
        type: string
        pattern: ^[a-z0-9-]{1,64}$
    DatasetId:
      name: datasetId
      in: path
      required: true
      schema:
        type: string
        format: uuid
  schemas:
    DatasetEntryPage:
      type: object
      required:
        - page
        - limit
        - total
        - entries
      properties:
        page:
          type: integer
        limit:
          type: integer
        total:
          type: integer
        entries:
          type: array
          items:
            $ref: '#/components/schemas/DatasetEntry'
    DatasetEntry:
      type: object
      additionalProperties: true
      required:
        - id
        - trace_id
        - split_group_id
        - turn_index
        - input
        - output
        - relabel_outputs
        - comparison_outputs
        - eval_results
        - split
      properties:
        id:
          type: string
          format: uuid
        trace_id:
          type: string
        split_group_id:
          type: string
        turn_index:
          type: integer
          minimum: 0
        input:
          $ref: '#/components/schemas/JsonObject'
        output:
          $ref: '#/components/schemas/JsonObject'
        relabel_outputs:
          type: array
          items:
            type: object
            additionalProperties: true
        comparison_outputs:
          type: array
          items:
            type: object
            additionalProperties: true
        eval_results:
          type: array
          items:
            type: object
            additionalProperties: true
        split:
          type:
            - string
            - 'null'
          enum:
            - train
            - val
            - null
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - message
            - type
          properties:
            message:
              type: string
            type:
              type: string
      example:
        error:
          message: Task 'missing' not found in entity 'your-team'
          type: not_found
    JsonObject:
      type: object
      additionalProperties: true
  responses:
    Error:
      description: Request failed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    WandbApiKey:
      type: http
      scheme: bearer
      bearerFormat: W&B API key
      description: A personal or service-account W&B API key.

````