Skip to main content
GET
/
api
/
v1
/
transactions
/
{chainId}
/
hash
/
{hash}
Get transaction detail
curl --request GET \
  --url https://api.example.com/api/v1/transactions/{chainId}/hash/{hash}
{
  "code": 0,
  "msg": "ok",
  "data": {
    "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"
  }
}

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

hash
string
required

Transaction hash.

Example:

"0x123"

Response

Transaction detail 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

Transaction list item and transaction detail payload.