Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
返回当前用户允许使用的模型列表
cURL
curl --request GET \ --url https://aihubmix.com/api/user/available_models \ --header 'Authorization: Bearer <token>'
import requests url = "https://aihubmix.com/api/user/available_models" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
{ "data": [ { "model": "<string>", "developer_id": 123, "order": 123 } ], "success": true, "message": "<string>" }