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

# Get run details by display ID

> Resolves a human-readable display ID (e.g., 'MMP-1') to a run and returns its details.



## OpenAPI

````yaml /pluto/api-reference/openapi.json get /api/runs/details/by-display-id/{displayId}
openapi: 3.0.0
info:
  title: mlop API
  version: 1.0.0
  description: API for mlop - ML experiment tracking platform
servers:
  - url: https://pluto-api.trainy.ai
    description: API Server
security:
  - bearerAuth: []
paths:
  /api/runs/details/by-display-id/{displayId}:
    get:
      tags:
        - Runs
      summary: Get run details by display ID
      description: >-
        Resolves a human-readable display ID (e.g., 'MMP-1') to a run and
        returns its details.
      parameters:
        - schema:
            type: string
            description: Display ID in PREFIX-NUMBER format (e.g., 'MMP-1')
          required: true
          name: displayId
          in: path
      responses:
        '200':
          description: Run details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunDetailsByDisplayIdResponse'
        '400':
          description: Invalid display ID format
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Run not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    RunDetailsByDisplayIdResponse:
      type: object
      properties:
        id:
          type: number
        name:
          type: string
        number:
          type: number
          nullable: true
        displayId:
          type: string
          nullable: true
        status:
          type: string
        tags:
          type: array
          items:
            type: string
        config:
          nullable: true
        systemMetadata:
          nullable: true
        loggerSettings:
          nullable: true
        statusMetadata:
          nullable: true
        createdAt:
          type: string
        updatedAt:
          type: string
        statusUpdated:
          type: string
          nullable: true
        projectName:
          type: string
        externalId:
          type: string
          nullable: true
        logNames:
          type: array
          items:
            type: object
            properties:
              logName:
                type: string
              logType:
                type: string
              logGroup:
                type: string
                nullable: true
            required:
              - logName
              - logType
              - logGroup
      required:
        - id
        - name
        - number
        - displayId
        - status
        - tags
        - createdAt
        - updatedAt
        - statusUpdated
        - projectName
        - externalId
        - logNames
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: API key obtained from the mlop dashboard

````