Skip to main content

Get Run

GET 

/api/v1/runs/:run_id

Fetch details of a specific experiment run.

Parameters:

  • run_id: Unique identifier of the run.

Returns: JSONResponse with:

  • run_details: Details of the requested run

Notes:

  • Returns 403 if the run is private and not accessible to the user
  • Returns 404 (not 500) while the run has no W&B record yet, with a retryable flag and a Retry-After header when the run is still live

Raises:

  • HTTPException 404: If W&B has no record of the run
  • HTTPException 500: If fetching run details fails

Request​

Responses​

Successful Response