Account Resources — Move REST API
List all resources under a Move account on Movement.
Overview
Lists all Move resources under an account. Useful for token balances and on-chain state.
Endpoint
GET /v1/accounts/{address}/resources
Movement-Specific Notes
- Resource types use canonical
0x...::module::Typeidentifiers.
Request
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| address | string | path | Yes | Hex account address |
Response
Success Response (200)
[
{
"type": "0x1::coin::CoinStore<0x1::aptos_coin::AptosCoin>",
"data": { "coin": { "value": "123" } }
}
]Code Examples
curl -X GET https://api-movement-mainnet.n.dwellir.com/YOUR_API_KEY/v1/accounts/0x1/resources \
-H "Accept: application/json"Accounts — Move REST API on Movement
Query Move account information on Movement including sequence numbers, authentication keys, and account state using the Aptos-compatible REST API.
Account Modules — Move REST API on Movement
List Move modules published under an account on Movement. Retrieve module ABIs, bytecode, and exposed functions using the Aptos-compatible REST API.