GET 路径: /api/billing/transactions 认证: 会话 Bearer
查询参数
number
返回的最大交易数。默认
50。string
来自上一次响应
next_cursor 的不透明游标。响应
object[]
string
下一页游标,末尾为
null。Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
以游标分页列出钱包交易(充值、用量扣减、调整)。金额为带符号值,以钱包币种计。
GET 路径: /api/billing/transactions 认证: 会话 Bearer
50。next_cursor 的不透明游标。null。curl -H "Authorization: Bearer eyJhbGciOi..." \
"https://ariacompute.cn/api/billing/transactions?limit=20"
{
"transactions": [
{
"id": "txn_01H...",
"type": "usage",
"amount": -0.12,
"currency": "CNY",
"created_at": "2026-09-23T08:59:00Z",
"description": "gemma-4-e2b-it_q4 inference"
}
],
"next_cursor": null
}
Was this page helpful?