DeerAPI 获取模型列表接口文档:通过 GET /v1/models 检索所有可用 OpenAI 模型信息,提供统一 API Endpoint https://api.deerapi.com/v1/models。
curl https://api.deerapi.com/v1/models \
-H "Authorization: Bearer <DEERAPI_KEY>"{
"object": "<string>",
"data": [
{
"id": "<string>",
"object": "<string>",
"created": 123,
"owned_by": "<string>",
"supported_endpoint_types": [
"<string>"
]
}
]
}Documentation Index
Fetch the complete documentation index at: https://apidoc.deerapi.com/llms.txt
Use this file to discover all available pages before exploring further.
/v1/models 返回当前账号在 DeerAPI 下可调用的模型列表。接入前先调用一次此接口,可以直接确认真实可用的模型 ID,而不必猜测某个官方模型名是否已在平台开放。
supported_endpoint_types 预判模型应该走 chat、responses、embeddings 等哪类统一接口。GET 接口,不需要请求体,只需要带上 DeerAPI 的 Bearer Token 即可。
curl https://api.deerapi.com/v1/models \
-H "Authorization: Bearer <DEERAPI_KEY>"{
"object": "<string>",
"data": [
{
"id": "<string>",
"object": "<string>",
"created": 123,
"owned_by": "<string>",
"supported_endpoint_types": [
"<string>"
]
}
]
}