# Models ## List **get** `/v2/gen-ai/models` To list all models, send a GET request to `/v2/gen-ai/models`. ### Returns - **links:** `APILinks` Links to other pages - **meta:** `APIMeta` Meta information about the data set - **models:** `array of APIModel` The models ## Domain Types ### API Agreement - **APIAgreement:** `object` Agreement Description - **description:** `string` - **name:** `string` - **url:** `string` - **uuid:** `string` ### API Model - **APIModel:** `object` A machine learning model stored on the GenAI platform - **agreement:** `APIAgreement` Agreement Description - **created\_at:** `string` Creation date / time - **is\_foundational:** `boolean` True if it is a foundational model provided by do - **name:** `string` Name of the model - **parent\_uuid:** `string` Unique id of the model, this model is based on - **updated\_at:** `string` Last modified - **upload\_complete:** `boolean` Model has been fully uploaded - **url:** `string` Download url - **uuid:** `string` Unique id - **version:** `APIModelVersion` Version Information about a Model ### API Model Version - **APIModelVersion:** `object` Version Information about a Model - **major:** `number` Major version number - **minor:** `number` Minor version number - **patch:** `number` Patch version number