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.
获取当前用户的 KEY 信息(若接口返回 token 字段)
cURL
curl --request GET \ --url https://aihubmix.com/api/user/token \ --header 'Authorization: Bearer <token>'
import requests url = "https://aihubmix.com/api/user/token" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
{ "success": true, "message": "<string>", "data": { "token": "<string>" } }