Skip to main content
GET
/
v1
/
accounts
/
{account.value}
/
transactions
List executed transaction signatures involving an account.
curl --request GET \
  --url https://rest.alphanet.thruput.org/v1/accounts/{account.value}/transactions
{
  "signatures": [
    {
      "value": "aSDinaTvuI8gbWludGxpZnk="
    }
  ],
  "page": {
    "nextPageToken": "<string>",
    "totalSize": "<string>"
  }
}

Path Parameters

account.value
string<byte>
required

32-byte public key buffer.

Query Parameters

page.pageSize
integer

Maximum number of items to return in a single response.

page.pageToken
string

Token identifying the position to resume from.

page.orderBy
string

Optional ordering specification in "field [asc|desc]" form.

Response

A successful response.

ListTransactionsForAccountResponse contains transaction signatures.

signatures
object[]
page
object

PageResponse captures pagination metadata returned with list results.