### Get Normal Transactions By Address Source: https://chiliscan.com/documentation/api/etherscan-like/accounts Retrieves a list of 'Normal' transactions associated with a given address. ```APIDOC ## GET /v2/network/mainnet/evm/{chainId}/etherscan/api ### Description Retrieves a list of 'Normal' transactions associated with a given address. ### Method GET ### Endpoint `/v2/network/mainnet/evm/{chainId}/etherscan/api` ### Parameters #### Query Parameters - **module** (string) - Required - `account` - **action** (string) - Required - `txlist` - **address** (string) - Required - The string representing the address to check for balance. - **startblock** (integer) - Required - The block number to start searching for transactions. - **endblock** (integer) - Required - The block number to stop searching for transactions. - **page** (integer) - Optional - The page number, if pagination is enabled. - **offset** (integer) - Optional - The number of transactions displayed per page. - **sort** (string) - Optional - The sorting preference, use `asc` to sort by ascending and `desc` to sort by descending. - **apikey** (string) - Required - Your API key token. ### Request Example ``` https://api.routescan.io/v2/network/mainnet/evm/88888/etherscan/api?module=account&action=txlist&address=0xddbd2b932c763ba5b1b7ae3b362eac3e8d40121a&startblock=0&endblock=99999999&page=1&offset=10&sort=asc&apikey=YourApiKeyToken ``` ### Response #### Success Response (200) - **status** (string) - The status of the request. - **message** (string) - The message indicating the result of the request. - **result** (array) - An array of transaction objects. #### Response Example ```json { "status": "1", "message": "OK", "result": [ { "blockNumber": "13481773", "timeStamp": "1678886400", "hash": "0xabc...", "from": "0xddbd2b932c763ba5b1b7ae3b362eac3e8d40121a", "to": "0x123...", "value": "1000000000000000000", "gas": "21000", "gasPrice": "10000000000", "input": "0x", "contractAddress": "", "cumulativeGasUsed": "21000", "gasUsed": "21000", "confirmations": "100", "transactionIndex": "0", "blockHash": "0xdef..." } ] } ``` ``` -------------------------------- ### Get Ether Balance for a Single Address Source: https://chiliscan.com/documentation/api/etherscan-like/accounts Retrieves the Ether balance for a specified blockchain address. ```APIDOC ## GET /v2/network/mainnet/evm/{chainId}/etherscan/api ### Description Retrieves the Ether balance for a single blockchain address. ### Method GET ### Endpoint `/v2/network/mainnet/evm/{chainId}/etherscan/api` ### Parameters #### Query Parameters - **module** (string) - Required - `account` - **action** (string) - Required - `balance` - **address** (string) - Required - The string representing the address to check for balance. - **tag** (string) - Optional - The pre-defined block parameter, either `earliest`, `pending`, or `latest`. - **apikey** (string) - Required - Your API key token. ### Request Example ``` https://api.routescan.io/v2/network/mainnet/evm/88888/etherscan/api?module=account&action=balance&address=0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae&tag=latest&apikey=YourApiKeyToken ``` ### Response #### Success Response (200) - **status** (string) - The status of the request. - **message** (string) - The message indicating the result of the request. - **result** (string) - The Ether balance of the address. #### Response Example ```json { "status": "1", "message": "OK", "result": "1000000000000000000" } ``` ``` -------------------------------- ### Get Internal Transactions by Block Range - API Request Source: https://chiliscan.com/documentation/api/etherscan-like/accounts This endpoint fetches 'internal transactions' within a specified block range. Parameters include the network, module, action, start block, end block, pagination details, and sort order. An API key is optional. ```http https://api.routescan.io/v2/network/mainnet/evm/ 88888/etherscan/api ?module=account &action=txlistinternal &startblock=13481773 &endblock=13491773 &page=1 &offset=10 &sort=asc &apikey=YourApiKeyToken ``` -------------------------------- ### Get Internal Transactions by Address Source: https://chiliscan.com/documentation/api/etherscan-like/accounts Retrieves a list of 'Internal' transactions associated with a given address. ```APIDOC ## GET /v2/network/mainnet/evm/{chainId}/etherscan/api ### Description Retrieves a list of 'Internal' transactions associated with a given address. ### Method GET ### Endpoint `/v2/network/mainnet/evm/{chainId}/etherscan/api` ### Parameters #### Query Parameters - **module** (string) - Required - `account` - **action** (string) - Required - `txlistinternal` - **address** (string) - Required - The string representing the address to check for balance. - **startblock** (integer) - Required - The block number to start searching for transactions. - **endblock** (integer) - Required - The block number to stop searching for transactions. - **page** (integer) - Optional - The page number, if pagination is enabled. - **offset** (integer) - Optional - The number of transactions displayed per page. - **sort** (string) - Optional - The sorting preference, use `asc` to sort by ascending and `desc` to sort by descending. - **apikey** (string) - Required - Your API key token. ### Request Example ``` https://api.routescan.io/v2/network/mainnet/evm/88888/etherscan/api?module=account&action=txlistinternal&address=0x2c1ba59d6f58433fb1eaee7d20b26ed83bda51a3&startblock=0&endblock=2702578&page=1&offset=10&sort=asc&apikey=YourApiKeyToken ``` ### Response #### Success Response (200) - **status** (string) - The status of the request. - **message** (string) - The message indicating the result of the request. - **result** (array) - An array of internal transaction objects. #### Response Example ```json { "status": "1", "message": "OK", "result": [ { "blockNumber": "13481773", "timeStamp": "1678886400", "hash": "0xabc...", "from": "0x2c1ba59d6f58433fb1eaee7d20b26ed83bda51a3", "to": "0x456...", "value": "500000000000000000", "contractAddress": "", "input": "0x", "output": "0x", "type": "call" } ] } ``` ``` -------------------------------- ### Get Normal Transactions by Address - API Request Source: https://chiliscan.com/documentation/api/etherscan-like/accounts This endpoint retrieves a list of 'normal' transactions associated with a specific address. Parameters include the network, module, action, address, block range (startblock, endblock), pagination details (page, offset), and sorting preference. An API key is optional. ```http https://api.routescan.io/v2/network/mainnet/evm/ 88888/etherscan/api ?module=account &action=txlist &address=0xddbd2b932c763ba5b1b7ae3b362eac3e8d40121a &startblock=0 &endblock=99999999 &page=1 &offset=10 &sort=asc &apikey=YourApiKeyToken ``` -------------------------------- ### Get Ether Balance for Single Address - API Request Source: https://chiliscan.com/documentation/api/etherscan-like/accounts This endpoint retrieves the Ether balance for a single specified address on the Chiliz network. It requires the network, module, action, and the address as parameters. The 'tag' parameter specifies the block to query, and an API key is optional for the free tier. ```http https://api.routescan.io/v2/network/mainnet/evm/ 88888/etherscan/api ?module=account &action=balance &address=0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae &tag=latest &apikey=YourApiKeyToken ``` -------------------------------- ### Get Ether Balance for Multiple Addresses - API Request Source: https://chiliscan.com/documentation/api/etherscan-like/accounts This endpoint allows fetching the Ether balance for multiple addresses in a single API call, up to 20 addresses. It requires the network, module, action, a comma-separated list of addresses, and the block tag. An API key is optional. ```http https://api.routescan.io/v2/network/mainnet/evm/ 88888/etherscan/api ?module=account &action=balancemulti &address=0xddbd2b932c763ba5b1b7ae3b362eac3e8d40121a,0x63a9975ba31b0b9626b34300f7f627147df1f526,0x198ef1ec325a96cc354c7266a038be8b5c558f67 &tag=latest &apikey=YourApiKeyToken ``` -------------------------------- ### Get Ether Balance for Multiple Addresses Source: https://chiliscan.com/documentation/api/etherscan-like/accounts Retrieves the Ether balance for multiple blockchain addresses in a single call. ```APIDOC ## GET /v2/network/mainnet/evm/{chainId}/etherscan/api ### Description Retrieves the Ether balance for multiple blockchain addresses in a single call. ### Method GET ### Endpoint `/v2/network/mainnet/evm/{chainId}/etherscan/api` ### Parameters #### Query Parameters - **module** (string) - Required - `account` - **action** (string) - Required - `balancemulti` - **address** (string) - Required - The strings representing the addresses to check for balance, separated by commas (up to 20 addresses per call). - **tag** (string) - Optional - The pre-defined block parameter, either `earliest`, `pending`, or `latest`. - **apikey** (string) - Required - Your API key token. ### Request Example ``` https://api.routescan.io/v2/network/mainnet/evm/88888/etherscan/api?module=account&action=balancemulti&address=0xddbd2b932c763ba5b1b7ae3b362eac3e8d40121a,0x63a9975ba31b0b9626b34300f7f627147df1f526,0x198ef1ec325a96cc354c7266a038be8b5c558f67&tag=latest&apikey=YourApiKeyToken ``` ### Response #### Success Response (200) - **status** (string) - The status of the request. - **message** (string) - The message indicating the result of the request. - **result** (array) - An array of objects, each containing the address and its Ether balance. #### Response Example ```json { "status": "1", "message": "OK", "result": [ { "address": "0xddbd2b932c763ba5b1b7ae3b362eac3e8d40121a", "balance": "1000000000000000000" }, { "address": "0x63a9975ba31b0b9626b34300f7f627147df1f526", "balance": "500000000000000000" } ] } ``` ``` -------------------------------- ### Get ERC20 Token Transfer Events by Address Source: https://chiliscan.com/documentation/api/etherscan-like/accounts Retrieves a list of 'ERC20 - Token Transfer Events' associated with a given address. ```APIDOC ## GET /v2/network/mainnet/evm/{chainId}/etherscan/api ### Description Retrieves a list of 'ERC20 - Token Transfer Events' associated with a given address. ### Method GET ### Endpoint `/v2/network/mainnet/evm/{chainId}/etherscan/api` ### Parameters #### Query Parameters - **module** (string) - Required - `account` - **action** (string) - Required - `tokentx` - **contractaddress** (string) - Required - The contract address of the token. - **address** (string) - Required - The address to check for token transfers. - **page** (integer) - Optional - The page number, if pagination is enabled. - **offset** (integer) - Optional - The number of transactions displayed per page. - **startblock** (integer) - Optional - The block number to start searching from. - **endblock** (integer) - Optional - The block number to stop searching at. - **apikey** (string) - Required - Your API key token. ### Request Example ``` https://api.routescan.io/v2/network/mainnet/evm/88888/etherscan/api?module=account&action=tokentx&contractaddress=0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7&address=0x77134cbC06cB00b66F4c7e623D5fdBF6777635EC&page=1&offset=100&startblock=34372864&apikey=YourApiKeyToken ``` ### Response #### Success Response (200) - **status** (string) - The status of the request. - **message** (string) - The message indicating the result of the request. - **result** (array) - An array of ERC20 token transfer event objects. #### Response Example ```json { "status": "1", "message": "OK", "result": [ { "blockNumber": "13481773", "timeStamp": "1678886400", "hash": "0xabc...", "from": "0x77134cbC06cB00b66F4c7e623D5fdBF6777635EC", "to": "0xdef...", "value": "1000000000000000000", "contractAddress": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", "tokenName": "Example Token", "tokenSymbol": "EXM", "tokenDecimal": "18" } ] } ``` ``` -------------------------------- ### Get Internal Transactions by Address - API Request Source: https://chiliscan.com/documentation/api/etherscan-like/accounts This endpoint fetches a list of 'internal' transactions for a given address. It requires the network, module, action, address, block range, pagination settings, and sort order. An API key is optional for this request. ```http https://api.routescan.io/v2/network/mainnet/evm/ 88888/etherscan/api ?module=account &action=txlistinternal &address=0x2c1ba59d6f58433fb1eaee7d20b26ed83bda51a3 &startblock=0 &endblock=2702578 &page=1 &offset=10 &sort=asc &apikey=YourApiKeyToken ``` -------------------------------- ### Get Internal Transactions by Block Range Source: https://chiliscan.com/documentation/api/etherscan-like/accounts Retrieves 'Internal Transactions' within a specified block range. ```APIDOC ## GET /v2/network/mainnet/evm/{chainId}/etherscan/api ### Description Retrieves 'Internal Transactions' within a specified block range. ### Method GET ### Endpoint `/v2/network/mainnet/evm/{chainId}/etherscan/api` ### Parameters #### Query Parameters - **module** (string) - Required - `account` - **action** (string) - Required - `txlistinternal` - **startblock** (integer) - Required - The block number to start searching for transactions. - **endblock** (integer) - Required - The block number to stop searching for transactions. - **page** (integer) - Optional - The page number, if pagination is enabled. - **offset** (integer) - Optional - The number of transactions displayed per page. - **sort** (string) - Optional - The sorting preference, use `asc` to sort by ascending and `desc` to sort by descending. - **apikey** (string) - Required - Your API key token. ### Request Example ``` https://api.routescan.io/v2/network/mainnet/evm/88888/etherscan/api?module=account&action=txlistinternal&startblock=13481773&endblock=13491773&page=1&offset=10&sort=asc&apikey=YourApiKeyToken ``` ### Response #### Success Response (200) - **status** (string) - The status of the request. - **message** (string) - The message indicating the result of the request. - **result** (array) - An array of internal transaction objects. #### Response Example ```json { "status": "1", "message": "OK", "result": [ { "blockNumber": "13481773", "timeStamp": "1678886400", "hash": "0xabc...", "from": "0x2c1ba59d6f58433fb1eaee7d20b26ed83bda51a3", "to": "0x456...", "value": "500000000000000000", "contractAddress": "", "input": "0x", "output": "0x", "type": "call" } ] } ``` ``` -------------------------------- ### Get ERC20 Token Transfers by Address - API Request Source: https://chiliscan.com/documentation/api/etherscan-like/accounts This endpoint retrieves a list of ERC20 token transfer events for a given address. It requires the network, module, action, contract address, the address to query, pagination settings, and a block range. An API key is optional. ```http https://api.routescan.io/v2/network/mainnet/evm/ 88888/etherscan/api ?module=account &action=tokentx &contractaddress=0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7 &address=0x77134cbC06cB00b66F4c7e623D5fdBF6777635EC &page=1 &offset=100 &startblock=34372864 ``` -------------------------------- ### Get Internal Transactions by Transaction Hash Source: https://chiliscan.com/documentation/api/etherscan-like/accounts Retrieves 'Internal Transactions' associated with a specific transaction hash. ```APIDOC ## GET /v2/network/mainnet/evm/{chainId}/etherscan/api ### Description Retrieves 'Internal Transactions' associated with a specific transaction hash. ### Method GET ### Endpoint `/v2/network/mainnet/evm/{chainId}/etherscan/api` ### Parameters #### Query Parameters - **module** (string) - Required - `account` - **action** (string) - Required - `txlistinternal` - **txhash** (string) - Required - The string representing the transaction hash to check for internal transactions. - **apikey** (string) - Required - Your API key token. ### Request Example ``` https://api.routescan.io/v2/network/mainnet/evm/88888/etherscan/api?module=account&action=txlistinternal&txhash=0x40eb908387324f2b575b4879cd9d7188f69c8fc9d87c901b9e2daaea4b442170&apikey=YourApiKeyToken ``` ### Response #### Success Response (200) - **status** (string) - The status of the request. - **message** (string) - The message indicating the result of the request. - **result** (array) - An array of internal transaction objects. #### Response Example ```json { "status": "1", "message": "OK", "result": [ { "blockNumber": "13481773", "timeStamp": "1678886400", "hash": "0xabc...", "from": "0x2c1ba59d6f58433fb1eaee7d20b26ed83bda51a3", "to": "0x456...", "value": "500000000000000000", "contractAddress": "", "input": "0x", "output": "0x", "type": "call" } ] } ``` ``` -------------------------------- ### Get Internal Transactions by Transaction Hash - API Request Source: https://chiliscan.com/documentation/api/etherscan-like/accounts This endpoint retrieves 'internal transactions' associated with a specific transaction hash. It requires the network, module, action, and the transaction hash. An API key is optional for this query. ```http https://api.routescan.io/v2/network/mainnet/evm/ 88888/etherscan/api ?module=account &action=txlistinternal &txhash=0x40eb908387324f2b575b4879cd9d7188f69c8fc9d87c901b9e2daaea4b442170 &apikey=YourApiKeyToken ``` -------------------------------- ### Using API Key in Configuration Source: https://chiliscan.com/documentation/index Illustrates how to configure an API key within a project's settings or configuration files. This method is often used for managing API keys in applications. ```javascript const config = { apiKey: { routescan: "placeholder" } }; ``` -------------------------------- ### Using API Key in Query Parameters Source: https://chiliscan.com/documentation/index Demonstrates how to include an API key as a query parameter in a request. This is useful for integrations where the API key needs to be directly embedded in the URL. ```text https://api.routescan.io/v2/some/endpoint?apikey=placeholder ``` -------------------------------- ### Gas Oracle Source: https://chiliscan.com/documentation/api/etherscan-like/accounts Retrieves current gas prices and estimates for network transactions. ```APIDOC ## GET /v2/network/mainnet/evm/{networkId}/etherscan/api ### Description Get Gas Oracle. ### Method GET ### Endpoint https://api.routescan.io/v2/network/mainnet/evm/{networkId}/etherscan/api ### Parameters #### Query Parameters - **module** (string) - Required - Specifies the module to use (e.g., 'gastracker'). - **action** (string) - Required - Specifies the action to perform (e.g., 'gasoracle'). - **apikey** (string) - Required - Your API key token. ### Request Example ``` https://api.routescan.io/v2/network/mainnet/evm/88888/etherscan/api?module=gastracker&action=gasoracle&apikey=YourApiKeyToken ``` ### Response #### Success Response (200) - **status** (string) - The status of the request ('1' for success, '0' for failure). - **message** (string) - The message describing the result of the request. - **result** (object) - An object containing gas price information: - **LastBlock** (integer) - The latest block number. - **SafeGasPrice** (string) - Estimated gas price for safe transactions (in Gwei). - **ProposeGasPrice** (string) - Estimated gas price for proposed transactions (in Gwei). - **FastGasPrice** (string) - Estimated gas price for fast transactions (in Gwei). - **SuggestBaseFee** (string) - Suggested base fee for EIP-1559 transactions (in Gwei). - **gasUsedRatio** (number) - The ratio of gas used in the last block. #### Response Example ```json { "status": "1", "message": "OK", "result": { "LastBlock": 17000000, "SafeGasPrice": "20", "ProposeGasPrice": "30", "FastGasPrice": "40", "SuggestBaseFee": "25", "gasUsedRatio": 0.6 } } ``` ``` -------------------------------- ### ERC721 - Token Transfer Events by Address Source: https://chiliscan.com/documentation/api/etherscan-like/accounts Retrieves a list of ERC721 token transfer events for a given address within a specified block range. ```APIDOC ## GET /v2/network/mainnet/evm/{networkId}/etherscan/api ### Description Retrieves a list of 'ERC721 - Token Transfer Events' by Address. ### Method GET ### Endpoint https://api.routescan.io/v2/network/mainnet/evm/{networkId}/etherscan/api ### Parameters #### Query Parameters - **module** (string) - Required - Specifies the module to use (e.g., 'account'). - **action** (string) - Required - Specifies the action to perform (e.g., 'tokennfttx'). - **contractaddress** (string) - Required - The contract address of the ERC721 token. - **address** (string) - Required - The address to check for token transfers. - **page** (integer) - Optional - The page number for pagination. - **offset** (integer) - Optional - The number of transactions to display per page. - **startblock** (integer) - Optional - The block number to start searching from. - **endblock** (integer) - Optional - The block number to stop searching at. - **sort** (string) - Optional - The sorting preference ('asc' or 'desc'). - **apikey** (string) - Required - Your API key token. ### Request Example ``` https://api.routescan.io/v2/network/mainnet/evm/88888/etherscan/api?module=account&action=tokennfttx&contractaddress=0x3025c5c2aa6eb7364555aac0074292195701bbd6&address=0x6f50142e432b0f6cb851d93430fd5afaafa0734a&page=1&offset=100&startblock=25176525&endblock=35676525&sort=desc&apikey=YourApiKeyToken ``` ### Response #### Success Response (200) - **status** (string) - The status of the request ('1' for success, '0' for failure). - **message** (string) - The message describing the result of the request. - **result** (array) - An array of transaction objects, each containing details like: - **blockNumber** (string) - **timeStamp** (string) - **hash** (string) - **nonce** (string) - **blockHash** (string) - **from** (string) - **to** (string) - **value** (string) - **tokenName** (string) - **tokenSymbol** (string) - **tokenID** (string) - **contractAddress** (string) - **gasPrice** (string) - **gasUsed** (string) - **logIndex** (string) - **data** (string) #### Response Example ```json { "status": "1", "message": "OK", "result": [ { "blockNumber": "35676525", "timeStamp": "1678886400", "hash": "0x...", "nonce": "...", "blockHash": "0x...", "from": "0x6f50142e432b0f6cb851d93430fd5afaafa0734a", "to": "0x...", "value": "1", "tokenName": "Example Token", "tokenSymbol": "EX", "tokenID": "12345", "contractAddress": "0x3025c5c2aa6eb7364555aac0074292195701bbd6", "gasPrice": "20000000000", "gasUsed": "50000", "logIndex": "0", "data": "0x..." } ] } ``` ``` -------------------------------- ### Historical Ether Balance for a Single Address by BlockNo Source: https://chiliscan.com/documentation/api/etherscan-like/accounts Retrieves the historical Ether balance for a specific address at a given block number. ```APIDOC ## GET /v2/network/mainnet/evm/{networkId}/etherscan/api ### Description Get Historical Ether Balance for a Single Address By BlockNo. ### Method GET ### Endpoint https://api.routescan.io/v2/network/mainnet/evm/{networkId}/etherscan/api ### Parameters #### Query Parameters - **module** (string) - Required - Specifies the module to use (e.g., 'account'). - **action** (string) - Required - Specifies the action to perform (e.g., 'balancehistory'). - **address** (string) - Required - The address to check the balance for. - **blockno** (integer) - Required - The block number at which to check the balance. - **apikey** (string) - Required - Your API key token. ### Request Example ``` https://api.routescan.io/v2/network/mainnet/evm/88888/etherscan/api?module=account&action=balancehistory&address=0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae&blockno=8000000&apikey=YourApiKeyToken ``` ### Response #### Success Response (200) - **status** (string) - The status of the request ('1' for success, '0' for failure). - **message** (string) - The message describing the result of the request. - **result** (string) - The Ether balance of the address at the specified block number (in Wei). #### Response Example ```json { "status": "1", "message": "OK", "result": "123456789000000000000" } ``` ``` -------------------------------- ### ERC1155 - Token Transfer Events by Address Source: https://chiliscan.com/documentation/api/etherscan-like/accounts Retrieves a list of ERC1155 token transfer events for a given address within a specified block range. ```APIDOC ## GET /v2/network/mainnet/evm/{networkId}/etherscan/api ### Description Retrieves a list of 'ERC1155 - Token Transfer Events' by Address. ### Method GET ### Endpoint https://api.routescan.io/v2/network/mainnet/evm/{networkId}/etherscan/api ### Parameters #### Query Parameters - **module** (string) - Required - Specifies the module to use (e.g., 'account'). - **action** (string) - Required - Specifies the action to perform (e.g., 'token1155tx'). - **contractaddress** (string) - Required - The contract address of the ERC1155 token. - **address** (string) - Required - The address to check for token transfers. - **page** (integer) - Optional - The page number for pagination. - **offset** (integer) - Optional - The number of transactions to display per page. - **startblock** (integer) - Optional - The block number to start searching from. - **endblock** (integer) - Optional - The block number to stop searching at. - **sort** (string) - Optional - The sorting preference ('asc' or 'desc'). - **apikey** (string) - Required - Your API key token. ### Request Example ``` https://api.routescan.io/v2/network/mainnet/evm/88888/etherscan/api?module=account&action=token1155tx&contractaddress=0xa695ea0c90d89a1463a53fa7a02168bc46fbbf7e&address=0xd550d3fa339f8a6ba2957c83e379d7d7da0fd529&page=1&offset=100&startblock=0&endblock=99999999&sort=desc&apikey=YourApiKeyToken ``` ### Response #### Success Response (200) - **status** (string) - The status of the request ('1' for success, '0' for failure). - **message** (string) - The message describing the result of the request. - **result** (array) - An array of transaction objects, each containing details like: - **blockNumber** (string) - **timeStamp** (string) - **hash** (string) - **nonce** (string) - **blockHash** (string) - **from** (string) - **to** (string) - **value** (string) - **tokenName** (string) - **tokenSymbol** (string) - **tokenID** (string) - **contractAddress** (string) - **gasPrice** (string) - **gasUsed** (string) - **logIndex** (string) - **data** (string) #### Response Example ```json { "status": "1", "message": "OK", "result": [ { "blockNumber": "99999999", "timeStamp": "1678886400", "hash": "0x...", "nonce": "...", "blockHash": "0x...", "from": "0xd550d3fa339f8a6ba2957c83e379d7d7da0fd529", "to": "0x...", "value": "10", "tokenName": "Example ERC1155 Token", "tokenSymbol": "E1155", "tokenID": "54321", "contractAddress": "0xa695ea0c90d89a1463a53fa7a02168bc46fbbf7e", "gasPrice": "20000000000", "gasUsed": "50000", "logIndex": "0", "data": "0x..." } ] } ``` ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.