Modules — ABI (Move REST)
Retrieve the ABI of Move modules.
Overview
Retrieve ABI for Move modules, including exposed functions and structs.
Endpoint
GET /v1/accounts/{address}/module/{module_name}
Movement-Specific Notes
- ABI helps construct view and entry function payloads.
Request
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| address | string | path | Yes | Publisher address |
| module_name | string | path | Yes | Module name |
Response
Success Response (200)
{ "abi": { "name": "MyModule", "exposed_functions": [] } }Code Examples
curl -X GET https://api-movement-mainnet.n.dwellir.com/YOUR_API_KEY/v1/accounts/0x1/module/MyModule \
-H "Accept: application/json"View Functions — Move REST API on Movement
Execute read-only Move view functions on Movement without submitting a transaction. Query on-chain state, token balances, pool prices, and module data using the Aptos-compatible REST API.
Events — Move REST API on Movement
Query on-chain events emitted by Move modules on Movement. Filter by event handle, creation number, and sequence range with pagination support.