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

# Get Dataset Version

> Get details of a specific dataset version, including schema, stats, and ingestion status.



## OpenAPI

````yaml /openapi.json get /datasets/{dataset_id}/versions/{version_id}
openapi: 3.1.0
info:
  title: Woodwide API
  description: API service for the Woodwide platform
  version: 0.1.0
servers:
  - url: https://api.woodwide.ai
    description: Production
security: []
paths:
  /datasets/{dataset_id}/versions/{version_id}:
    get:
      tags:
        - Datasets
      summary: Get Dataset Version
      description: >-
        Get details of a specific dataset version, including schema, stats, and
        ingestion status.
      operationId: get_dataset_version_datasets__dataset_id__versions__version_id__get
      parameters:
        - name: dataset_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Dataset Id
        - name: version_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Version Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DatasetVersion'
              example:
                dataset_version_id: a1b2c3d4-0000-0000-0000-000000000002
                dataset_id: a1b2c3d4-0000-0000-0000-000000000001
                version: 1
                status: ready
                created_at: '2025-01-15T10:30:00Z'
        '401':
          description: Unauthorized -- API key is missing or invalid.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
                    example: Not authenticated
        '403':
          description: >-
            Forbidden -- your API key does not have permission for this
            resource.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
                    example: Forbidden
        '404':
          description: Not Found -- the requested resource does not exist.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
                    example: Not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '429':
          description: >-
            Too Many Requests -- you have exceeded the rate limit. Heavy
            operations (training, inference, dataset uploads) are limited to 60
            requests per minute per API key. All other endpoints are limited to
            600 requests per minute per API key.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
                    example: Rate limit exceeded. Retry after a short delay.
      security:
        - HTTPBearer: []
components:
  schemas:
    DatasetVersion:
      properties:
        dataset_version_id:
          type: string
          format: uuid
          title: Dataset Version Id
        dataset_id:
          type: string
          format: uuid
          title: Dataset Id
        version:
          type: integer
          title: Version
        status:
          $ref: '#/components/schemas/DatasetVersionStatus'
          description: Version status.
        schema_json:
          additionalProperties: true
          type: object
          title: Schema Json
          description: Inferred column schema.
        byte_size:
          type: integer
          title: Byte Size
          description: Size of the dataset version in bytes.
        ingest_job_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Ingest Job Id
          description: ID of the ingestion job that created this version.
        created_at:
          type: string
          format: date-time
          title: Created At
        ready_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Ready At
          description: When the version became ready for use.
      type: object
      required:
        - dataset_version_id
        - dataset_id
        - version
        - status
        - created_at
      title: DatasetVersion
      description: |-
        Dataset version detail.

        Includes schema information.  The ``status``
        field indicates whether the version is ready for use.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
      description: Returned when request parameters or body fail validation.
    DatasetVersionStatus:
      type: string
      enum:
        - processing
        - ready
        - failed
      title: DatasetVersionStatus
    ValidationError:
      type: object
      required:
        - loc
        - msg
        - type
      properties:
        loc:
          type: array
          items:
            type: string
          title: Location
          description: Path to the field that caused the error.
        msg:
          type: string
          title: Message
          description: Human-readable error message.
        type:
          type: string
          title: Error Type
          description: Machine-readable error type identifier.
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````