curl --request GET \
--url https://api.skiesoft.com/v1/account \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"usage": {
"currentMonth": 1250.5,
"quota": 10000,
"remaining": 8749.5,
"resetDate": "2024-02-01T00:00:00Z"
},
"rateLimit": {
"requestsPerSecond": 50,
"concurrentConnections": 20
}
}
}取得當前帳號的使用量和配額資訊
curl --request GET \
--url https://api.skiesoft.com/v1/account \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"usage": {
"currentMonth": 1250.5,
"quota": 10000,
"remaining": 8749.5,
"resetDate": "2024-02-01T00:00:00Z"
},
"rateLimit": {
"requestsPerSecond": 50,
"concurrentConnections": 20
}
}
}使用 API 金鑰進行身份驗證。格式:Bearer YOUR_API_KEY
帳號資訊
請求是否成功
true
Show child attributes
Show child attributes
本月已使用分鐘數
x >= 01250.5
月配額分鐘數
x >= 010000
剩餘配額分鐘數
x >= 08749.5
配額重置日期
"2024-02-01T00:00:00Z"