API KEY 余额查询接口
API KEY 余额查询接口(API Key Balance Query API)用于快速查询指定 API KEY 的当前余额,帮助开发者实时掌握资源状态。接口设计简洁明了,支持灵活集成,适用于账户管理、用量监控、费用核算等多种场景,助力开发者高效管理接口调用和资源分配,确保服务持续稳定运行。
✅️方法一:使用 curl 命令查询余额
请求示例
curl --request GET 'https://wcode.net/api/account/billing/grants' --header 'Authorization: Bearer API_KEY'
💡小提示:--header 中的
API_KEY
需要替换为您的 API KEY,Bearer
要保留。格式示例:Authorization: Bearer sk-...
响应示例
{
"status": "success",
"error_message": "",
"error_code": null,
"data": {
"total_available": 200.1024,
"total_available_currency": "CNY",
"total_available_currency_symbol": "¥"
}
}
API_KEY 充值入口: https://wcode.net/apikey-recharge
✅️方法二:使用代码查询余额
示例 1,使用 Python Requests 查询:
import requests
url = "https://wcode.net/api/account/billing/grants"
payload = {}
headers = {
'Authorization': 'Bearer API_KEY' # <-------- TODO: 替换这里的 API_KEY
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
示例 2,使用 Java OkHttp 查询:
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
.url("https://wcode.net/api/account/billing/grants")
.method("GET", body)
.addHeader("Authorization", "Bearer API_KEY") // <-------- TODO: 替换这里的 API_KEY
.build();
Response response = client.newCall(request).execute();
示例 3,使用 PHP Guzzle 查询:
<?php
$client = new Client();
$headers = [
'Authorization' => 'Bearer API_KEY' // <-------- TODO: 替换这里的 API_KEY
];
$request = new Request('GET', 'https://wcode.net/api/account/billing/grants', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();