Skip to main content

Accounts

Get GT Balance for a Single Address

Returns the GT balance of a given address.

https://gatescan.org/api
?module=account
&action=balance
&address=0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae
&apikey=YourApiKeyToken

Try this endpoint in your broswer

ParameterDescription
addressThe string representing the address to check for balance

Get GT Balance for Multiple Addresses in a Single Call

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

https://gatescan.org/api
?module=account
&action=balancemulti
&address=0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae,0x63a9975ba31b0b9626b34300f7f627147df1f526
&apikey=YourApiKeyToken

Try this endpoint in your broswer

ParameterDescription
addressThe strings representing the addresses to check for balance, separated by ,up to 20 addresses per call

Get a list of 'Normal' Transactions By Address

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

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

https://gatescan.org/api
?module=account
&action=txlist
&address=0xc6ef7050fBe638ffD992343C4C8271B9aF605D6c
&startblock=162783
&endblock=162786
&page=1
&offset=10
&sort=asc
&apikey=YourApiKeyToken

Try this endpoint in your broswer

ParameterDescription
addressthe string representing the addresses to check for balance
startblockthe integer block number to start searching for transactions
endblockthe integer block number to stop searching for transactions
pagethe integer page number, if pagination is enabled
offsetthe number of transactions displayed per page
sortthe sorting preference, use asc to sort by ascending and desc to sort by descending

Get a list of 'Internal' Transactions by Address

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

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

https://gatescan.org/api
?module=account
&action=txlistinternal
&address=0xc6ef7050fBe638ffD992343C4C8271B9aF605D6c
&startblock=1
&endblock=10000000
&page=1
&offset=10
&sort=asc
&apikey=YourApiKeyToken

Try this endpoint in your broswer

ParameterDescription
addressthe string representing the addresses to check for balance
startblockthe integer block number to start searching for transactions
endblockthe integer block number to stop searching for transactions
pagethe integer page number, if pagination is enabled
offsetthe number of transactions displayed per page
sortthe sorting preference, use asc to sort by ascending and desc to sort by descending

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://gatescan.org/api
?module=account
&action=txlistinternal
&txhash=0x4ebd7e3d33598a74260d6b5fd281a1356d6a9e2911dd8b9b874796e61129ad8a
&apikey=YourApiKeyToken

Try this endpoint in your broswer
Usage:

  • GRC-20 transfers from an address, specify the address parameter
  • GRC-20 transfers from a contract address, specify the contract address parameter
  • GRC-20 transfers from an address filtered by a token contract, specify both address and contract address parameters.
ParameterDescription
txhashthe string representing the transaction hash to check for internal transactions

Get "Internal Transactions" by Block Range

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

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

https://gatescan.org/api
?module=account
&action=txlistinternal
&startblock=1
&endblock=10000000
&page=1
&offset=10
&sort=asc
&apikey=YourApiKeyToken

Try this endpoint in your broswer

ParameterDescription
startblockthe integer block number to start searching for transactions
endblockthe integer block number to stop searching for transactions
pagethe integer page number, if pagination is enabled
offsetthe number of transactions displayed per page
sortthe sorting preference, use asc to sort by ascending and desc to sort by descending

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

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

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

https://gatescan.org/api
?module=account
&action=tokentx
&contractaddress=0x02d06Ff5867C0797d2b9C338838Dc1c3A8BFfca2
&address=0xc6ef7050fBe638ffD992343C4C8271B9aF605D6c
&page=1
&offset=100
&sort=asc
&apikey=YourApiKeyToken

Usage:

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

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

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

    Try this endpoint in your broswer

ParameterDescription
addressthe string representing the address to check for balance
contractaddressthe string representing the token contract address to check for balance
pagethe integer page number, if pagination is enabled
offsetthe number of transactions displayed per page
sortthe sorting preference, use asc to sort by ascending and desc to sort by descending

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

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

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

https://gatescan.org/api
?module=account
&action=tokennfttx
&contractaddress=0x1644fc96c662d6f9cf7fa6e7992b666201a0b000
&address=0xf71700eea83beb6d2e2e15d7303d1e619fd85a46
&page=1
&offset=100
&sort=asc
&apikey=YourApiKeyToken

Usage:

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

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

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

    Try this endpoint in your broswer

    ParameterDescription
    addressthe string representing the address to check for balance
    contractaddressthe string representing the token contract address to check for balance
    pagethe integer page number, if pagination is enabled
    offsetthe number of transactions displayed per page
    sortthe sorting preference, use asc to sort by ascending and desc to sort by descending

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

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

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

https://gatescan.org/api
?module=account
&action=token1155tx
&contractaddress=0x227740e95f0b95872a6f6b6abf05a87b6bfbc078
&address=0x4b81c30495f0cbf112902567918a323dddec2b61
&page=1
&offset=100
&sort=asc
&apikey=YourApiKeyToken

Usage:

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

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

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

    Try this endpoint in your broswer

    ParameterDescription
    addressthe string representing the address to check for balance
    contractaddressthe string representing the token contract address to check for balance
    pagethe integer page number, if pagination is enabled
    offsetthe number of transactions displayed per page
    sortthe sorting preference, use asc to sort by ascending and desc to sort by descending

Get list of Blocks Mined by Address

Returns the list of blocks mined by an address.

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

https://gatescan.org/api
?module=account
&action=getminedblocks
&address=gt11kwam9ym8ytp6adgg7p5jsrpn27gnvumtwul5aavy69lsmz8jkenjztmg5eueazakxx5dda
&page=1
&offset=100
&apikey=YourApiKeyToken

Try this endpoint in your broswer

ParameterDescription
addressthe string representing the address to check for balance
pagethe integer page number, if pagination is enabled
offsetthe number of transactions displayed per page

Get GateChain assets By Address

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

https://gatescan.org/api
?module=account
&action=tokenholding
&address=0xc6ef7050fBe638ffD992343C4C8271B9aF605D6c
&page=1
&offset=10
&apikey=YourApiKeyToken

Try this endpoint in your broswer

ParameterDescription
addressthe string representing the address to check for balance
pagethe integer page number, if pagination is enabled
offsetthe number of transactions displayed per page

Last updated on 2025/06/05