⚠️Blast API (blastapi.io) ends Oct 31. Migrate to Dwellir and skip Alchemy's expensive compute units.
Switch Today →
Skip to main content

Accounts — Move REST API

Overview#

Query Move accounts, including basic info, resources, and modules. Movement uses Aptos-compatible endpoints at /v1.

Endpoint#

GET /v1/accounts/{address}

Movement-Specific Notes#

  • Use 0x-prefixed addresses.
  • Move balances are tracked as on-chain resources; query the relevant coin resource for balances.

Request#

Parameters#

NameTypeLocationRequiredDescription
addressstringpathYesHex account address

Response#

Success Response (200)#

{
"sequence_number": "string",
"authentication_key": "string",
"address": "0x..."
}

Code Examples#

curl -X GET https://api-movement-mainnet.n.dwellir.com/YOUR_API_KEY/v1/accounts/0x1 \
-H "Accept: application/json"