GET
https://api.wylon.cn/v1/models
List models
Returns the model IDs available to your current API key, with basic metadata (creation time, owner, etc.).
Authorization
Authorizationstring · headerrequired
Bearer token.
Query parameters
This endpoint takes no request body; optional query parameters are listed below.
typeenum · queryoptional
Filter by type:
text (text generation), vlm (vision-language), embedding, rerank. Returns all when omitted.Response
objectstring
Always
list.dataarray
List of model objects.
idstring
Full model ID, e.g.
moonshotai/Kimi-K2. Use this value when calling other endpoints.objectstring
Always
model.createdinteger
UNIX timestamp when the model was added to wylon.
owned_bystring
Owning organization or author, e.g.
moonshotai, deepseek-ai.typestringwylon extension
Category:
text / vlm / embedding / rerank.context_lengthintegerwylon extension
Maximum context length the model supports (in tokens).
Example response
{
"object": "list",
"data": [
{
"id": "moonshotai/Kimi-K2",
"object": "model",
"created": 1742400000,
"owned_by": "moonshotai",
"type": "text",
"context_length": 128000
},
{
"id": "BAAI/bge-large-zh",
"object": "model",
"created": 1700000000,
"owned_by": "BAAI",
"type": "embedding",
"context_length": 8192
}
]
}
Example — 401
{
"error": {
"type": "authentication_error",
"message": "Invalid API key provided."
}
}