Retrieve models
Retrieve the list of valid AI models that can appear video projects.
1. API endpoint
https://app.aistudios.com/api/odin/v3/dropdown/models
2. Response parameters
key | desc | type |
---|---|---|
id | Unique identifier of the AI model | String |
label | User-friendly label of the AI model | String |
3. Sample Request
- cURL
- Node.js
- Python
curl https://app.aistudios.com/api/odin/v3/dropdown/models \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X GET
import axios from "axios";
const token = ${API KEY};
const customWebhookUrl = ${webhook_delivery_address};
axios.get('https://app.aistudios.com/api/odin/v3/dropdown/models',
{
headers: {
'Authorization': ${token},
'Content-Type': 'application/json'
}
}
)
.then((res) => {
console.log(res.data);
})
.catch((error) => {
console.error(error);
})
import requests
import json
url = "https://app.aistudios.com/api/odin/v3/dropdown/models"
headers = {
"Content-Type": "application/json",
"Authorization": ${API TOKEN}
}
r = requests.get(url, data=json.dumps(body), headers=headers)