Accounts

Get FTM Balance for a Single Address

Returns the FTM balance of a given address.

https://api-testnet.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-testnet.ftmscan.com/api
   ?module=account
   &action=balancemulti
   &address=0x9b2bb6290fb910a960ec344cdf2ae60ba89647f6,0xb417bcf81994ebd64b3474531ca5bcd8c5bd9c0c,0xFC336AA34c058A38f4BB7d17f4a79FAc4589F2Fc
   &tag=latest
   &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.ftmscan.com/api
   ?module=account
   &action=txlist
   &address=0x9b2bb6290fb910a960ec344cdf2ae60ba89647f6
   &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.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-testnet.ftmscan.com/api
   ?module=account
   &action=txlistinternal
   &txhash=0x946bcaf668a92d52cdae750e8261f44b2b2742e4265e7fcadfef8e6e0aabe841
   &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.ftmscan.com/api
   ?module=account
   &action=txlistinternal
   &startblock=6971869
   &endblock=6971969
   &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-testnet.ftmscan.com/api
   ?module=account
   &action=tokentx
   &contractaddress=0x15c34d8b356f21112c07ca1811d84101f480a3f1
   &address=0xd57be84a2f9deded7df66634c259237e58db3d26
   &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-testnet.ftmscan.com/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0x72cf319f1f4b243c51d66f384322ec543e98b26b
   &address=0x81d49d431adb6d073f8373bf200c294394a90e5b
   &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-testnet.ftmscan.com/api
   ?module=account
   &action=getminedblocks
   &address=0x0000000000000000000000000000000000000000
   &blocktype=blocks
   &page=1
   &offset=10
   &apikey=YourApiKeyToken

Query Parameters

Last updated