> ## 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 by ID

> Decodes a SQID-encoded run ID and returns the numeric ID.



## OpenAPI

````yaml /pluto/api-reference/openapi.json get /api/runs/{runId}
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/{runId}:
    get:
      tags:
        - Runs
      summary: Get run by ID
      description: Decodes a SQID-encoded run ID and returns the numeric ID.
      parameters:
        - schema:
            type: string
            description: SQID-encoded run ID
          required: true
          name: runId
          in: path
      responses:
        '200':
          description: Run ID decoded successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  runId:
                    type: number
                    description: Numeric run ID
                required:
                  - runId
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: API key obtained from the mlop dashboard

````