Read Trial
Retrieves information about a specific optimization trial in globalMOO.
Endpoint
GET /trials/{trial_id}
Path Parameters
trial_id
integer
Yes
Unique identifier of the trial
Response Fields
id
integer
Unique identifier for the trial
project_id
integer
ID of the parent project
status
string
Current status (see Status Values below)
outputs
array[array[float]]
Array of output case arrays
output_count
integer
Number of outputs per case
created_at
string
Creation timestamp (ISO 8601)
updated_at
string
Last update timestamp (ISO 8601)
Examples
Response Example
Error Responses
401
Unauthorized - Invalid API key
404
Trial not found
429
Too many requests - Rate limit exceeded
500
Internal server error
Status Values
Possible trial status values:
active
- Trial is currently runningcompleted
- Trial has finished successfullyfailed
- Trial encountered an errorstopped
- Trial was manually stopped
Validation Rules
Trial ID must be a positive integer
Trial must exist
output_count matches the number of values in each output array
All output values must be valid floating point numbers
Last updated