Accounts

Get FTM Balance for a Single Address

Returns the FTM balance of a given address.

https://api.ftmscan.com/api
   ?module=account
   &action=balance
   &address=0x5A534988535cf27a70e74dFfe299D06486f185B7
   &apikey=YourApiKeyToken

Query Parameters

Get FTM Balance for Multiple Addresses in a Single Call

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

https://api.ftmscan.com/api
   ?module=account
   &action=balancemulti
   &address=0x1B5248B881762576d630246feeA92E5c6FceD2e1,0x48Eb0e2b01c9B35521c6ff877D525D5dcB582671,0xFC336AA34c058A38f4BB7d17f4a79FAc4589F2Fc
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

Returns the historical FTM balance of an address at a certain block height.

https://api.ftmscan.com/api
   ?module=account
   &action=balancehistory
   &address=0x30cd55FE125A944250bfEcF898B2Ff1a8594D375
   &blockno=41505365
   &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.ftmscan.com/api
   ?module=account
   &action=txlist
   &address=0xb91dd8225Db88dE4E3CD7B7eC538677A2c1Be8Cb
   &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.ftmscan.com/api
   ?module=account
   &action=txlistinternal
   &address=0xf491e7b69e4244ad4002bc14e878a34207e38c29
   &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.

https://api.ftmscan.com/api
   ?module=account
   &action=txlistinternal
   &txhash=0x91095d8dc009a6d607f901c614cd56b6175bf71be64463c5bc5d3e4e58383b76
   &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.ftmscan.com/api
   ?module=account
   &action=txlistinternal
   &startblock=19568000
   &endblock=19569000
   &page=1
   &offset=10
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

Get a list of 'ERC-20 Token Transfer Events' by Address

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

https://api.ftmscan.com/api
   ?module=account
   &action=tokentx
   &contractaddress=0x69c744d3444202d35a2783929a0f930f2fbb05ad
   &address=0x489d55df278224a05f793098d41753d5669d5144
   &startblock=0
   &endblock=99999999
   &page=1
   &offset=5
   &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 'ERC-721 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.ftmscan.com/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0x428b68C856ACD8e7eae3C5CeB5d650AEaa7F48bc
   &address=0xc28bb91d5a8d4d4715cd8666d4e1aa0089b7bee5
   &startblock=0
   &endblock=99999999
   &page=1
   &offset=100
   &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 Validated by Address

Returns the list of blocks validated by an address.

https://api.ftmscan.com/api
   ?module=account
   &action=getminedblocks
   &address=0x0000000000000000000000000000000000000000
   &blocktype=blocks
   &page=1
   &offset=10
   &apikey=YourApiKeyToken

Query Parameters

Last updated