Skip to main content
GET
/
api
/
v1
/
history
/
{address}
Get aggregated transaction history
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.

Path Parameters

address
string
required

Wallet address.

Example:

"0xabc1230000000000000000000000000000000000"

Query Parameters

chainIds
string

Chain filter.

Example:

"8453,1"

cursor
string

Cursor for pagination.

Example:

"cursor_20"

limit
string

Page size.

Example:

"20"

status
enum<string>

Transaction status filter.

Available options:
success,
pending,
failed
Example:

"success"

kind
enum<string>

Transaction kind filter.

Available options:
send,
receive,
approval,
contract_interaction
Example:

"send"

Response

200 - application/json

History 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