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

# Get Version Detail

> Get detail for a specific provider version.

Public endpoint. Returns 404 if parent provider is not visible.

Returns:
    Provider version detail.

Raises:
    CatalogProviderNotFoundError: If parent provider not found or not visible.
    ProviderVersionNotFoundError: If version not found.



## OpenAPI

````yaml https://api.pragmatiks.io/openapi.json get /providers/{org}/{name}/versions/{version}
openapi: 3.1.0
info:
  title: Pragma API
  version: 0.1.0
servers: []
security: []
paths:
  /providers/{org}/{name}/versions/{version}:
    get:
      tags:
        - providers
      summary: Get Version Detail
      description: |-
        Get detail for a specific provider version.

        Public endpoint. Returns 404 if parent provider is not visible.

        Returns:
            Provider version detail.

        Raises:
            CatalogProviderNotFoundError: If parent provider not found or not visible.
            ProviderVersionNotFoundError: If version not found.
      operationId: providers-get_version_detail
      parameters:
        - name: org
          in: path
          required: true
          schema:
            type: string
            title: Org
        - name: name
          in: path
          required: true
          schema:
            type: string
            title: Name
        - name: version
          in: path
          required: true
          schema:
            type: string
            title: Version
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProviderVersion'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ProviderVersion:
      properties:
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        prefix:
          type: string
          title: Prefix
        name:
          type: string
          title: Name
        version:
          type: string
          title: Version
        runtime_version:
          type: string
          title: Runtime Version
        wheel_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Wheel Url
        wheel_sha256:
          anyOf:
            - type: string
              pattern: ^[0-9a-f]{64}$
            - type: 'null'
          title: Wheel Sha256
        package_name:
          anyOf:
            - type: string
              maxLength: 200
              minLength: 1
            - type: 'null'
          title: Package Name
        entrypoint:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Entrypoint
        source_hash:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Hash
        build_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Build Id
        schemas:
          anyOf:
            - items:
                additionalProperties: true
                type: object
              type: array
            - type: 'null'
          title: Schemas
        changelog:
          anyOf:
            - type: string
            - type: 'null'
          title: Changelog
        status:
          $ref: '#/components/schemas/VersionStatus'
          default: building
        published_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Published At
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
        canonical:
          type: string
          title: Canonical
          description: >-
            Slash-joined ``prefix/name`` canonical string of the owning
            provider.


            Returns:
                Display form of the provider identity this version belongs to.
          readOnly: true
      type: object
      required:
        - prefix
        - name
        - version
        - runtime_version
        - canonical
      title: ProviderVersion
      description: |-
        A published version of a provider.

        Identity fields (frozen):
            prefix: Namespace token of the owning provider.
            name: Provider short name this version belongs to.
            version: Semantic version string (e.g., "1.0.0").

        Build metadata:
            runtime_version: Pinned runtime version this version targets.
            wheel_url: HTTPS URL of the published Python wheel. Sole
                artifact pointer for wheel-published versions; see
                :attr:`WheelProviderVersionCreate.wheel_url` for accepted
                registry forms.
            wheel_sha256: Optional SHA-256 digest of the wheel bytes,
                verified at publish time and forwarded to runtime installs.
            package_name: Optional importable Python package name inside a
                wheel-published provider. When absent, the runtime attempts
                to infer it from installed wheel metadata.
            entrypoint: Optional override of the runtime entrypoint command
                (e.g. ``["python", "-m", "custom_runtime"]``). ``None`` keeps
                the default ``python -m pragma_runtime.entrypoint``.
            source_hash: SHA-256 of the source tarball on legacy rows.

        Provider introspection:
            schemas: Resource type schemas extracted from the provider.

        State (system-managed):
            status: Build/publish lifecycle status.
            published_at: Timestamp when version was published.
            error_message: Error details when build fails.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    VersionStatus:
      type: string
      enum:
        - building
        - published
        - failed
        - yanked
      title: VersionStatus
      description: Build/publish status for a provider version.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````