Query method (tx by address)

api/v3

Request Body - Content-Type: application/json;charset=utf-8

If the address has fewer transactions than count, the returned list of transactions will be of length less than count.GET/api/v3/tx?{address}&{count}

Example request without count

curl -X GET http://localhost:2442/api/v3/tx\?address\=H497fHm8gbPZxaXySKpV17a7beYBF9Ut3 \
-H 'Content-Type: application/json;charset=utf-8'

Example request with count

curl -X GET http://localhost:2442/api/v3/tx\?address\=H497fHm8gbPZxaXySKpV17a7beYBF9Ut3\&count\=1 \
-H 'Content-Type: application/json;charset=utf-8'

Last updated