跳转到主要内容
GET
/
api
/
v1
/
history
/
{address}
获取聚合历史
curl --request GET \
  --url https://api.example.com/api/v1/history/{address}
{
  "code": 0,
  "msg": "ok",
  "data": {
    "items": [
      {
        "hash": "0x123",
        "chainId": 8453,
        "from": "0xabc1230000000000000000000000000000000000",
        "to": "0xdef4560000000000000000000000000000000000",
        "value": "1000000000000000000",
        "tokenAddress": "native",
        "symbol": "ETH",
        "status": "success",
        "timestamp": "2026-05-11T10:00:00.000Z",
        "kind": "send",
        "blockNumber": 29123456,
        "explorerUrl": "https://basescan.org/tx/0x123"
      }
    ],
    "nextCursor": "cursor_20"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.nexfi.robert.dpdns.org/llms.txt

Use this file to discover all available pages before exploring further.

路径参数

address
string
必填

钱包地址。

示例:

"0xabc1230000000000000000000000000000000000"

查询参数

chainIds
string

链过滤。

示例:

"8453,1"

cursor
string

分页游标。

示例:

"cursor_20"

limit
string

分页条数。

示例:

"20"

status
enum<string>

交易状态过滤。

可用选项:
success,
pending,
failed
示例:

"success"

kind
enum<string>

交易类型过滤。

可用选项:
send,
receive,
approval,
contract_interaction
示例:

"send"

响应

200 - application/json

成功返回聚合历史

统一响应包裹结构。

code
integer
必填

业务状态码,0 表示成功。

示例:

0

msg
string
必填

可读返回消息。

示例:

"ok"

data
object