Models
List Models
Retrieve all available AI models with their capabilities, pricing, and operational status.
List Models
Authorization
apiKey x-api-key<token>
Your Skytells API key. Obtain one from Dashboard → API Keys.
In: header
Response Body
application/json
application/json
curl -X GET "https://api.skytells.ai/v1/models"[
{
"name": "TrueFusion",
"description": "TrueFusion Standard",
"namespace": "truefusion",
"type": "image",
"status": "operational",
"capabilities": [
"text-to-image",
"image-to-image"
],
"pricing": {
"amount": 0.03,
"currency": "USD",
"unit": "image"
},
"vendor": {
"name": "Skytells",
"verified": true,
"slug": "skytells"
},
"input_schema": {},
"output_schema": {}
}
]{
"error": {
"http_status": 401,
"message": "Invalid or missing API key",
"details": "Please obtain a valid API key from the dashboard",
"error_id": "UNAUTHORIZED"
}
}How is this guide?