Accounts

Get Wemix Balance for a Single Address

Returns the Wemix balance of a given address.

https://api-testnet.wemixscan.com/api
   ?module=account
   &action=balance
   &address=0x40ddebeb14a7339486a32fbe2633d17491529596
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

Get Wemix Balance for Multiple Addresses in a Single Call

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

https://api-testnet.wemixscan.com/api
   ?module=account
   &action=balancemulti
   &address=0x4d7a48526687c99287300ebe7f997ba269c4f93e,0x3d2a38bcf8542dda91f927f56be3461da7ee6773,0x40ddebeb14a7339486a32fbe2633d17491529596
   &apikey=YourApiKeyToken

Query Parameters

Get a list of 'Normal' Transactions By Address

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

https://api-testnet.wemixscan.com/api
   ?module=account
   &action=txlist
   &address=0x4d7a48526687c99287300ebe7f997ba269c4f93e
   &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-testnet.wemixscan.com/api
   ?module=account
   &action=txlistinternal
   &address=0xf8241f00de683651d99c0b61bc4dcde3cd7cce2c
   &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-testnet.wemixscan.com/api
   ?module=account
   &action=txlistinternal
   &txhash=0x719ee93366c0a519a7bfdba4a0985ff447a3f3d21914b26f83b6de3c82e340c5
   &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-testnet.wemixscan.com/api
   ?module=account
   &action=txlistinternal
   &startblock=36365039
   &endblock=36366039
   &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-testnet.wemixscan.com/api
   ?module=account
   &action=tokentx
   &contractaddress=0x244c72ab61f11dd44bfa4aaf11e2efd89ca789fe
   &address=0x1c7df8d45c24ab23687b868731e5cc0aee7fe469
   &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-testnet.wemixscan.com/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0x424ab48c8dcd4c89fd60d3ddf1f355d5c6954fd1
   &address=0x35a148d4e97b55d97bda99d5275a444cd3fc187a
   &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 list of Blocks Mined by Address

Returns the list of blocks mined by an address.

https://api-testnet.wemixscan.com/api
   ?module=account
   &action=getminedblocks
   &address=0x41a0cc567d5c92a80dd25ae4ad813e90e648e001
   &blocktype=blocks
   &page=1
   &offset=10
   &apikey=YourApiKeyToken

Query Parameters

Last updated