List supported models
curl --request GET \
--url https://developer.creao.ai/v1/models \
--header 'Authorization: Bearer <token>'const url = 'https://developer.creao.ai/v1/models';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://developer.creao.ai/v1/models"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "anthropic/claude-sonnet-5",
"name": "Claude Sonnet 5",
"provider": "anthropic",
"default": true,
"legacy": false,
"cost_tier": 3,
"requires_paid_plan": false,
"available": true
},
{
"id": "anthropic/claude-fable-5",
"name": "Claude Fable 5",
"provider": "anthropic",
"default": false,
"legacy": false,
"cost_tier": 6,
"requires_paid_plan": true,
"available": false
}
]
}{
"error": "AUTHENTICATION_REQUIRED"
}{
"error": "RATE_LIMITED"
}Models
List supported models
Discover supported model ids and per-account availability.
GET
/
v1
/
models
List supported models
curl --request GET \
--url https://developer.creao.ai/v1/models \
--header 'Authorization: Bearer <token>'const url = 'https://developer.creao.ai/v1/models';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://developer.creao.ai/v1/models"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "anthropic/claude-sonnet-5",
"name": "Claude Sonnet 5",
"provider": "anthropic",
"default": true,
"legacy": false,
"cost_tier": 3,
"requires_paid_plan": false,
"available": true
},
{
"id": "anthropic/claude-fable-5",
"name": "Claude Fable 5",
"provider": "anthropic",
"default": false,
"legacy": false,
"cost_tier": 6,
"requires_paid_plan": true,
"available": false
}
]
}{
"error": "AUTHENTICATION_REQUIRED"
}{
"error": "RATE_LIMITED"
}⌘I