Accounts

Get MOVR Balance for a Single Address

Returns the MOVR balance of a given address.

https://api-moonriver.moonscan.io/api
   ?module=account
   &action=balance
   &address=0x990C23d72a50124cFcf1f9CF5782bA9b640ca44e
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

Get MOVR Balance for Multiple Addresses in a Single Call

Returns the balance of the accounts from a list of addresses.

https://api-moonriver.moonscan.io/api
   ?module=account
   &action=balancemulti
   &address=0x88baeB35F73c72D0A4554D36851C1A76403937f8,0x88baeB35F73c72D0A4554D36851C1A76403937f8

Query Parameters

Get a list of 'Normal' Transactions By Address

Returns the list of transactions performed by an address, with optional pagination.

https://api-moonriver.moonscan.io/api
   ?module=account
   &action=txlist
   &address=0x88baeB35F73c72D0A4554D36851C1A76403937f8
   &startblock=0
   &endblock=99999999
   &page=1
   &offset=10
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

Get a list of 'Internal' Transactions by Address

Returns the list of internal transactions performed by an address, with optional pagination.

https://api-moonriver.moonscan.io/api
   ?module=account
   &action=txlistinternal
   &address=0xEE5b3EADe0460d91F86584CEf73eD9AfeB6a034D
   &startblock=0
   &endblock=99999999
   &page=1
   &offset=10
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

Get 'Internal Transactions' by Transaction Hash

Returns the list of internal transactions performed within a transaction.

Note : This API endpoint returns a maximum of 10000 records only.

https://api-moonriver.moonscan.io/api
   ?module=account
   &action=txlistinternal
   &txhash=0x50adb1a1cc1a12ccb2198cddb68d223eb39cd04069510ca85e25ba02d7f0e1e4 
   &apikey=YourApiKeyToken

Query Parameters

Get "Internal Transactions" by Block Range

Returns the list of internal transactions performed within a block range, with optional pagination.

https://api-moonriver.moonscan.io/api
   ?module=account
   &action=txlistinternal
   &startblock=484887
   &endblock=765371
   &page=1
   &offset=10
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

Get a list of 'ERC20 - Token Transfer Events' by Address

Returns the list of ERC-20 tokens transferred by an address, with optional filtering by token contract.

https://api-moonriver.moonscan.io/api
   ?module=account
   &action=tokentx
   &contractaddress=0x98878B06940aE243284CA214f92Bb71a2b032B8A
   &address=0x4d310a3d1806b03e1bb39705bd39e1ead8c96be3
   &page=1
   &offset=100
   &startblock=0
   &endblock=99999999
   &sort=asc
   &apikey=YourApiKeyToken

Usage:

  • ERC-20 transfers from an address, specify the address parameter

  • ERC-20 transfers from a contract address, specify the contract address parameter

  • ERC-20 transfers from an address filtered by a token contract, specify both address and contract address parameters.

Query Parameters

Get a list of 'ERC721 - Token Transfer Events' by Address

Returns the list of ERC-721 ( NFT ) tokens transferred by an address, with optional filtering by token contract

https://api-moonriver.moonscan.io/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0x08716e418e68564C96b68192E985762740728018
   &address=0x649defadc9d476b7296b79b20968dca0691b026b
   &page=1
   &offset=100
   &startblock=0
   &endblock=99999999
   &sort=asc
   &apikey=YourApiKeyToken

Usage:

  • ERC-721 transfers from an address, specify the address parameter

  • ERC-721 transfers from a contract address, specify the contract address parameter

  • ERC-721 transfers from an address filtered by a token contract, specify both address and contract address parameters.

Query Parameters

Get a list of 'ERC1155 - Token Transfer Events' by Address

Returns the list of ERC-1155 ( Multi Token Standard ) tokens transferred by an address, with optional filtering by token contract.

https://api-moonriver.moonscan.io/api
   ?module=account
   &action=token1155tx
   &contractaddress=0x1974eEAF317Ecf792ff307F25A3521C35eECde86
   &address=0x495e889d1a6ceb447a57dcc1c68410299392380c
   &page=1
   &offset=100
   &startblock=0
   &endblock=99999999
   &sort=asc
   &apikey=YourApiKeyToken

Usage:

  • ERC-1155 transfers from an address, specify the address parameter

  • ERC-1155 transfers from a contract address, specify the contract address parameter

  • ERC-1155 transfers from an address filtered by a token contract, specify both address and contract address parameters.

Query Parameters

Get list of Blocks Collated by Address

Returns the list of blocks collated by an address.

https://api-moonriver.moonscan.io/api
   ?module=account
   &action=getminedblocks
   &address=0x1baa10360585c5a0acfe4e68f52cdde3b7fba3b5
   &blocktype=blocks
   &page=1
   &offset=10
   &apikey=YourApiKeyToken

Query Parameters

Last updated