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 資訊(若 API 傳回 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>" } }