> ## 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 Latest Runtime Version

> Get the latest runtime version.

Returns the most recently released runtime image version.

Returns:
    Latest runtime version.

Raises:
    HTTPException: 404 if no versions exist.



## OpenAPI

````yaml https://api.pragmatiks.io/openapi.json get /runtime/versions/latest
openapi: 3.1.0
info:
  title: Pragma API
  version: 0.1.0
servers: []
security: []
paths:
  /runtime/versions/latest:
    get:
      tags:
        - runtime
      summary: Get Latest Runtime Version
      description: |-
        Get the latest runtime version.

        Returns the most recently released runtime image version.

        Returns:
            Latest runtime version.

        Raises:
            HTTPException: 404 if no versions exist.
      operationId: runtime-get_latest_runtime_version
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RuntimeVersion'
components:
  schemas:
    RuntimeVersion:
      properties:
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        version:
          type: string
          title: Version
        image_url:
          type: string
          title: Image Url
        released_at:
          type: string
          format: date-time
          title: Released At
        changelog:
          anyOf:
            - type: string
            - type: 'null'
          title: Changelog
      type: object
      required:
        - version
        - image_url
        - released_at
      title: RuntimeVersion
      description: |-
        A tracked runtime image version.

        Identity fields (frozen):
            version: Semver string (e.g., "0.39.0"), used as SurrealDB record ID.

        Metadata:
            image_url: Full container image URL for this runtime version.
            released_at: Timestamp when this version was released.
            changelog: Optional release notes in markdown.

````