Get public transitions by address
ENDPOINT
GET https://aleo-testnetbeta.obscura.network/v1/<API_KEY>/transitions/address/{address}/latest?limit={limit}
Returns the transitions for a given address. These are only public transitions. The latest (according to block timestamp) transitions are returned first. We limit the number of returned transitions to a maximum of 1000 per call.
Arguments¶
Parameter | Type | Required | Description |
---|---|---|---|
address | string | Yes | The aleo address of the transitions. |
limit | number | No | Optional parameter which if set limits the number of items returned. |
Response¶
Parameter | Type | Description |
---|---|---|
result | Array<{address: string, transition_id: string, transition: Transition, transaction_id: string, block_height: number, timestamp: number}> | The requested transitions. |