GET
/
model-config
/
custom-models
/
list
JavaScript
import Morphik from 'morphik';

const client = new Morphik({
  apiKey: 'My API Key',
});

const customModels = await client.modelConfig.customModels.list();

console.log(customModels);
[
  {
    "id": "<string>",
    "name": "<string>",
    "provider": "<string>",
    "model_name": "<string>",
    "config": {}
  }
]

Headers

authorization
string

Response

200
application/json

Successful Response

The response is of type CustomModel · object[].