QVeris
运行任务
文档目录

查询结算历史

GET /auth/account/settlement-history

获取账号中心结算历史轻量 feed。

This first implementation serves the immutable ledger summary path used after readiness confirms the ledger is complete for the requested range.

REST API 概览 · OpenAPI JSON · OpenAPI YAML

接口契约

稳定性认证费用Operation ID
已发布Bearer API 密钥免费get_account_settlement_history_api_v1_auth_account_settlement_history_get

参数

名称位置必填类型说明
start_datequerystring | null开始日期 (YYYY-MM-DD)
end_datequerystring | null结束日期 (YYYY-MM-DD)
scopequerystring账本范围
cursorquerystring | null下一页游标
page_sizequeryinteger每页数量

请求体

此操作没有 JSON 请求体。

可运行示例

bash
curl --request GET \
  --url "https://qveris.ai/api/v1/auth/account/settlement-history" \
  --header "Authorization: Bearer $QVERIS_API_KEY"
typescript
const response = await fetch("https://qveris.ai/api/v1/auth/account/settlement-history", {
  method: "GET",
  headers: {
    Authorization: `Bearer ${process.env.QVERIS_API_KEY}`,
  },
})

if (!response.ok) throw new Error(`QVeris request failed: ${response.status}`)
console.log(await response.json())
python
import os
import requests

response = requests.request(
    "GET",
    "https://qveris.ai/api/v1/auth/account/settlement-history",
    headers={"Authorization": f"Bearer {os.environ['QVERIS_API_KEY']}"},
    timeout=30,
)
response.raise_for_status()
print(response.json())

响应

状态码含义Schema
200Successful ResponseAPIResponse_SettlementHistoryResponse_
422Validation ErrorHTTPValidationError

成功响应示例

json
{
  "status": "string",
  "message": "string"
}

精确契约

相关操作

POST 发现能力 · POST 检查能力 · POST 预检能力 · POST 调用能力

这个页面对你有帮助吗?