List supported provider/model pairs and primitive capabilities.
curl --request GET \
--url http://localhost:3001/v1/training/capabilities \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:3001/v1/training/capabilities"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:3001/v1/training/capabilities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"version": "2026-09-02",
"admission": {
"new_sessions": true
},
"providers": [
{
"id": "modal",
"models": [
{
"id": "<string>",
"model_identity": {},
"tuning_modes": [
"<string>"
],
"checkpoint_modes": [
"<string>"
],
"artifact_modes": [
"<string>"
],
"operations": [
"<string>"
],
"algorithms": {},
"resource_profile": {}
}
],
"operations": [
"<string>"
],
"sampler_operations": [
"<string>"
]
}
]
}{
"error": {
"code": "<string>",
"message": "<string>"
},
"request_id": "<string>",
"funding_source": "platform"
}unified-training
List supported provider/model pairs and primitive capabilities.
GET
/
v1
/
training
/
capabilities
List supported provider/model pairs and primitive capabilities.
curl --request GET \
--url http://localhost:3001/v1/training/capabilities \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:3001/v1/training/capabilities"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:3001/v1/training/capabilities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"version": "2026-09-02",
"admission": {
"new_sessions": true
},
"providers": [
{
"id": "modal",
"models": [
{
"id": "<string>",
"model_identity": {},
"tuning_modes": [
"<string>"
],
"checkpoint_modes": [
"<string>"
],
"artifact_modes": [
"<string>"
],
"operations": [
"<string>"
],
"algorithms": {},
"resource_profile": {}
}
],
"operations": [
"<string>"
],
"sampler_operations": [
"<string>"
]
}
]
}{
"error": {
"code": "<string>",
"message": "<string>"
},
"request_id": "<string>",
"funding_source": "platform"
}Authorizations
Whitney-issued API key. No organization-selection header is accepted.
