Address transactions
GET /addresses/:address/transactions
Transactions on the address.
Request
Path Parameters
Bech32 address.
Query Parameters
Possible values: >= 1
and <= 100
Default value: 100
The number of addresses per page.
Possible values: >= 1
and <= 21474836
Default value: 1
The page number for listing the results.
Possible values: [asc
, desc
]
Default value: asc
The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last.
The block number and optionally also index from which (inclusive) to start search for results, concatenated using colon.
Has to be lower than or equal to to
parameter.
The block number and optionally also index where (inclusive) to end the search for results, concatenated using colon.
Has to be higher than or equal to from
parameter.
- 200
- 400
- 403
- 404
- 418
- 429
- 500
Return the address content
Schema
- Array [
- ]
Hash of the transaction
Transaction index within the block
Block height
Block creation time in UNIX time
[
{
"tx_hash": "8788591983aa73981fc92d6cddbbe643959f5a784e84b8bee0db15823f575a5b",
"tx_index": 6,
"block_height": 69,
"block_time": 1635505891
},
{
"tx_hash": "52e748c4dec58b687b90b0b40d383b9fe1f24c1a833b7395cdf07dd67859f46f",
"tx_index": 9,
"block_height": 4547,
"block_time": 1635505987
},
{
"tx_hash": "e8073fd5318ff43eca18a852527166aa8008bee9ee9e891f585612b7e4ba700b",
"tx_index": 0,
"block_height": 564654,
"block_time": 1834505492
}
]
Bad request
Schema
{
"status_code": 400,
"error": "Bad Request",
"message": "Backend did not understand your request."
}
Authentication secret is missing or invalid
Schema
{
"status_code": 403,
"error": "Forbidden",
"message": "Invalid project token."
}
Component not found
Schema
{
"status_code": 404,
"error": "Not Found",
"message": "The requested component has not been found."
}
IP has been auto-banned for extensive sending of requests after usage limit has been reached
Schema
{
"status_code": 418,
"error": "Requested Banned",
"message": "IP has been auto-banned for flooding."
}
Usage limit reached
Schema
{
"status_code": 429,
"error": "Project Over Limit",
"message": "Usage is over limit."
}
Internal Server Error
Schema
{
"status_code": 500,
"error": "Internal Server Error",
"message": "An unexpected response was received from the backend."
}