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