GET
/
models
/
custom
JavaScript
import Morphik from 'morphik';

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

const modelResponses = await client.models.listCustom();

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

Headers

authorization
string

Response

200
application/json

Successful Response

The response is of type ModelResponse · object[].