Skip to main content

Model Database

You can refer to the Models documentation to understand what models are available and the differences between them. It also possible to list all LLM models through API.

List all supported models and their providers.​

Returns a dictionary of supported models and their providers, including both large language models and other AI services.

path=/models method=get

JavaScript

const response = await fetch('https://api.umamiai.xyz/v1/models', {
method: 'GET',
headers: {"Authorization": "Bearer YOUR_UMAMIAI_API_KEY"},
});
const data = await response.json();

Python

import requests

response = requests.get(
"https://api.umamiai.xyz/v1/models",
headers={"Authorization": "Bearer YOUR_UMAMIAI_API_KEY"},
)
data = response.json()

curl

curl -L \
-H 'Authorization: Bearer YOUR_UMAMIAI_API_KEY' \
'https://api.umamiai.xyz/v1/models'