Model Endpoints
Models are the core resource in globalMOO. They represent optimization problems and contain all the necessary configuration for running optimization trials.
Available Endpoints
- Create Model - Create a new optimization model 
- List Models - Retrieve all models in your account 
Model Object
A model object contains the following fields:
{
    "id": 123,
    "name": "string",
    "description": "string",
    "created_at": "2025-01-31T10:00:00.000Z",
    "updated_at": "2025-01-31T10:00:00.000Z"
}id
integer
Unique identifier for the model
name
string
Name of the model (4-96 characters)
description
string
Optional description of the model (must be ≥8 characters if provided)
created_at
string
ISO 8601 timestamp with millisecond precision
updated_at
string
ISO 8601 timestamp with millisecond precision
Common Use Cases
- Creating a new optimization model before defining objectives 
- Listing existing models to find one to work with 
- Managing multiple models for different optimization scenarios 
Last updated