跳转到主要内容
GET
/
api
/
v1
/
transactions
/
{chainId}
/
{address}
获取单链交易列表
curl --request GET \
  --url https://api.example.com/api/v1/transactions/{chainId}/{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.

路径参数

chainId
integer
必填

目标链 ID。

示例:

8453

address
string
必填

钱包地址。

示例:

"0xabc1230000000000000000000000000000000000"

查询参数

cursor
string

分页游标。

示例:

"cursor_40"

limit
string

分页条数。

示例:

"20"

响应

200 - application/json

成功返回单链交易列表

统一响应包裹结构。

code
integer
必填

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

示例:

0

msg
string
必填

可读返回消息。

示例:

"ok"

data
object