Skip to main content
GET
/
api
/
v1
/
transactions
/
{chainId}
/
{address}
Get chain transaction list
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.

Path Parameters

chainId
integer
required

Target chain ID.

Example:

8453

address
string
required

Wallet address.

Example:

"0xabc1230000000000000000000000000000000000"

Query Parameters

cursor
string

Cursor for pagination.

Example:

"cursor_40"

limit
string

Page size.

Example:

"20"

Response

200 - application/json

Chain transaction response

Standard response envelope.

code
integer
required

Business status code. 0 means success.

Example:

0

msg
string
required

Human-readable message.

Example:

"ok"

data
object