List Models
curl --request GET \
--url https://api.moonshot.ai/v1/models \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"id": "kimi-k2.5",
"object": "model",
"created": 123,
"owned_by": "moonshot",
"context_length": 123,
"supports_image_in": true,
"supports_video_in": true,
"supports_reasoning": true
}
]
}List Models
List all currently available models.
GET
/
v1
/
models
List Models
curl --request GET \
--url https://api.moonshot.ai/v1/models \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"id": "kimi-k2.5",
"object": "model",
"created": 123,
"owned_by": "moonshot",
"context_length": 123,
"supports_image_in": true,
"supports_video_in": true,
"supports_reasoning": true
}
]
}List all currently available models.
Authorizations
The Authorization header expects a Bearer token. Use an MOONSHOT_API_KEY as the token. This is a server-side secret key. Generate one on the API keys page in your dashboard.
Was this page helpful?
⌘I