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 https://api.arouter.ai/api/v1/balance \ -H "Authorization: Bearer lr_live_xxxx"
import requests resp = requests.get( "https://api.arouter.ai/api/v1/balance", headers={"Authorization": "Bearer lr_live_xxxx"}, ) print(resp.json())
const response = await fetch("https://api.arouter.ai/api/v1/balance", { headers: { Authorization: "Bearer lr_live_xxxx", }, }); console.log(await response.json());
ARouter アカウントの現在のプリペイドクレジット残高を取得します。
{ "balance": 42.50, "currency": "USD" }
balance
currency