/v1/accounts/{address}/resources

Get account resources

Retrieves all account resources for a given account and a specific ledger version. If the ledger version is not specified in the request, the latest ledger version is used.

The Aptos nodes prune account state history, via a configurable time window. If the requested ledger version has been pruned, the server responds with a 410.

Parameters

  • address REQUIRED: (string) - Address of account with or without a 0x prefix

  • ledger_version OPTIONAL: (string)- Ledger version to get the state of the account

Returns

  • array of:

    • type (string)

      • String representation of a MoveStructTag (on-chain Move struct type). This exists so you can specify MoveStructTags as path / query parameters, e.g. for get_events_by_event_handle.

      • It is a combination of:

        1. move_module_address, module_name, and struct_name, all joined by ::

        2. struct generic type parameters joined by ,

    • data (object)

      • This is a JSON representation of some data within an account resource. More specifically, it is a map of strings to arbitrary JSON values / objects, where the keys are top-level fields within the given resource.

      • To clarify, you might query for 0x1::account::Account and see the example data.

        Move bool type value is serialized into boolean.

        Move u8 type value is serialized into integer.

        Move u64 and u128 type value is serialized into string.

        Move address type value (32 byte Aptos account address) is serialized into a HexEncodedBytes string. For example:

        • 0x1

        • 0x1668f6be25668c1a17cd8caf6b8d2f25

        Move vector type value is serialized into array, except vector<u8> which is serialized into a HexEncodedBytes string with 0x prefix. For example:

        • vector<u64>{255, 255} => ["255", "255"]

        • vector<u8>{255, 255} => 0xffff

Move struct type value is serialized into object that looks like this (except some Move stdlib types, see the following section):

{ 
    field1_name: field1_value, 
    field2_name: field2_value, ...... 
}

Example

Request

curl --request GET \
  --url https://aptos-mainnet.blastapi.io/<project-id>/v1/accounts/0x1d8727df513fa2a8785d0834e40b34223daff1affc079574082baadb74b66ee4/resources \
  --header 'Content-Type: application/json'

Result

[
  {
    "type": "0x1::coin::CoinStore<0x1::aptos_coin::AptosCoin>",
    "data": {
      "coin": {
        "value": "386589061842"
      },
      "deposit_events": {
        "counter": "18687",
        "guid": {
          "id": {
            "addr": "0x1d8727df513fa2a8785d0834e40b34223daff1affc079574082baadb74b66ee4",
            "creation_num": "2"
          }
        }
      },
      "frozen": false,
      "withdraw_events": {
        "counter": "25730",
        "guid": {
          "id": {
            "addr": "0x1d8727df513fa2a8785d0834e40b34223daff1affc079574082baadb74b66ee4",
            "creation_num": "3"
          }
        }
      }
    }
  },
  {
    "type": "0x1::account::Account",
    "data": {
      "authentication_key": "0x1d8727df513fa2a8785d0834e40b34223daff1affc079574082baadb74b66ee4",
      "coin_register_events": {
        "counter": "1",
        "guid": {
          "id": {
            "addr": "0x1d8727df513fa2a8785d0834e40b34223daff1affc079574082baadb74b66ee4",
            "creation_num": "0"
          }
        }
      },
      "guid_creation_num": "4",
      "key_rotation_events": {
        "counter": "0",
        "guid": {
          "id": {
            "addr": "0x1d8727df513fa2a8785d0834e40b34223daff1affc079574082baadb74b66ee4",
            "creation_num": "1"
          }
        }
      },
      "rotation_capability_offer": {
        "for": {
          "vec": []
        }
      },
      "sequence_number": "83530",
      "signer_capability_offer": {
        "for": {
          "vec": []
        }
      }
    }
  },
  {
    "type": "0x54ad3d30af77b60d939ae356e6606de9a4da67583f02b962d2d3f2e481484e90::uln_signer::Config",
    "data": {
      "acl": {
        "allow_list": [],
        "deny_list": []
      },
      "fees": {
        "handle": "0x9b363c90098d441b4922d547a28613590d3c7cc99c0bb6e78c1695fd34d977a2"
      }
    }
  },
  {
    "type": "0x54ad3d30af77b60d939ae356e6606de9a4da67583f02b962d2d3f2e481484e90::executor_v1::ExecutorConfig",
    "data": {
      "acl": {
        "allow_list": [],
        "deny_list": []
      },
      "fee": {
        "handle": "0x7efcad91458d5f043c01098f0ac2d5ae0fef96336c80a4045cbeed80b180fed5"
      }
    }
  }
]

Last updated