Skip to main content

Retrieve the transactions of a address

POST 

https://minatokens.com/api/v1//info/transactions

The transactions endpoint retrieves the transactions of a address.

Request

Bodyrequired

    tokenAddressstring

    The address of the token contract (optional). One of tokenAddress or tokenId is required.

    tokenIdstring

    The token ID (optional). One of tokenAddress or tokenId is required.

    addressstring

    The Mina address for which to retrieve the transactions. Optional

Responses

Successful retrieval of transactions.

Schema
    transactions object[]required

    Array of transactions

  • Array [
  • timestampnumberrequired

    Timestamp of the transaction

    statusstringrequired

    Status of the transaction

    updatedAccounts object[]required
  • Array [
  • accountAddressstringrequired

    Address of the updated account

    isZkappAccountbooleanrequired

    Whether this is a zkApp account

    verificationKeyHashstring

    Hash of the verification key

  • ]
  • accountUpdatesCountnumberrequired

    Number of account updates in the transaction

    proverAddressstringrequired

    Address of the prover

    isZkappAccountbooleanrequired

    Whether this is a zkApp account

    hashstringrequired

    Transaction hash

    feenumberrequired

    Transaction fee

    memostringrequired

    Transaction memo

  • ]

Authorization: x-api-key

name: x-api-keytype: apiKeyin: headerdescription: API key for authorization. Get your API key at https://minatokens.com/api
curl -L 'https://minatokens.com/api/v1/info/transactions' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'x-api-key: <x-api-key>' \
-d '{
"tokenAddress": "string",
"tokenId": "string",
"address": "string"
}'
Request Collapse all
Base URL
https://minatokens.com/api/v1
Auth
Body required
{
  "tokenAddress": "string",
  "tokenId": "string",
  "address": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!