SocialScan Explorer API
  • Introduction
  • 🎯API ENDPOINTS
    • Accounts
    • Contracts
    • Transactions
    • Blocks
    • Logs
    • Tokens
    • Stats
  • 🗳️Verify Smart Contract
    • Verify Smart Contract
      • Verify with SocialScan UI
      • Verify with SocialScan API
      • Verify through Foundry
      • Verify through Hardhat
  • 🤝SUPPORT
    • FAQ
    • Rate Limits
    • Common Error Messages
    • Getting Help
Powered by GitBook
On this page
  • Compare With EtherScan
  • Get Daily Network Transaction Fee
  • Get Daily New Address Count
  • Get Daily Network Utilization
  • Get Daily Average Network Hash Rate
  • Get Daily Transaction Count
  • Get Daily Average Network Difficulty

Was this helpful?

  1. API ENDPOINTS

Stats

PreviousTokensNextVerify Smart Contract

Last updated 1 month ago

Was this helpful?

Compare With EtherScan

EndPoint
EtherScan
SocialScan

Get Daily Network Transaction Fee

✅

✅

Check Transaction Receipt Status

✅

✅

Get Daily Network Utilization

✅

✅

Get Daily Average Network Hash Rate

✅

🛠️

Get Daily Transaction Count

✅

✅

Get Daily Average Network Difficulty

✅

🛠️

Get Daily Network Transaction Fee

[]

Returns the amount of transaction fees paid to miners per day.

https://api.w3w.ai/mantle/v1/developer/api
   ?module=stats
   &action=dailytxnfee
   &startdate=2023-10-01
   &enddate=2023-10-28
   &sort=asc
   &apikey=YourApiKeyToken

Try this endpoint in your

https://api.socialscan.io/monad-testnet/v1/developer/api
   ?module=stats
   &action=dailytxnfee
   &startdate=2025-02-01
   &enddate=2025-03-01
   &sort=asc
   &apikey=8f9d3e27-a516-4c08-b235-7d94f02ca91b

Try this endpoint in your

Query Parameters

Parameter
Description

startdate

the starting date in yyyy-MM-dd format, eg. 2023-10-01

enddate

the ending date in yyyy-MM-dd format, eg. 2023-10-28

sort

the sorting preference, use asc to sort by ascending and desc to sort by descending

Sample response

{
    "status": "1",
    "message": "OK",
    "result": [
        {
            "UTCDate": "2023-10-01",
            "unixTimeStamp": "1696089600",
            "transactionFee": "62372246139437036"
        },
        {
            "UTCDate": "2023-10-28",
            "unixTimeStamp": "1698422400",
            "transactionFee": "129631478633928998"
        }
    ]
}

Get Daily New Address Count

Returns the number of new Ethereum addresses created per day.

https://api.w3w.ai/mantle/v1/developer/api
   ?module=stats
   &action=dailynewaddress
   &startdate=2023-10-01
   &enddate=2023-10-28
   &sort=asc
   &apikey=YourApiKeyToken
https://api.socialscan.io/monad-testnet/v1/developer/api
   ?module=stats
   &action=dailynewaddress
   &startdate=2025-02-01
   &enddate=2025-03-01
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

Parameter
Description

startdate

the starting date in yyyy-MM-dd format, eg. 2023-10-01

enddate

the ending date in yyyy-MM-dd format, eg. 2023-10-28

sort

the sorting preference, use asc to sort by ascending and desc to sort by descending

Sample response

{
    "status": "1",
    "message": "OK",
    "result": [
        {
            "UTCDate": "2023-10-01",
            "unixTimeStamp": "1696089600",
            "newAddressCount": "1451"
        },
        {
            "UTCDate": "2023-10-28",
            "unixTimeStamp": "1698422400",
            "newAddressCount": "6349"
        }
    ]
}

Get Daily Network Utilization

Returns the daily average gas used over gas limit, in percentage.

https://api.w3w.ai/mantle/v1/developer/api
   ?module=stats
   &action=dailynetutilization
   &startdate=2023-10-01
   &enddate=2023-10-28
   &sort=asc
   &apikey=YourApiKeyToken
https://api.socialscan.io/monad-testnet/v1/developer/api
   ?module=stats
   &action=dailynetutilization
   &startdate=2025-01-01
   &enddate=2025-02-28
   &sort=asc
   &apikey=8f9d3e27-a516-4c08-b235-7d94f02ca91b

Query Parameters

Parameter
Description

startdate

the starting date in yyyy-MM-dd format, eg. 2023-10-01

enddate

the ending date in yyyy-MM-dd format, eg. 2023-10-28

sort

the sorting preference, use asc to sort by ascending and desc to sort by descending

Sample response

{
    "status": "1",
    "message": "OK",
    "result": [
        {
            "UTCDate": "2023-10-01",
            "unixTimeStamp": "1696089600",
            "networkUtilization": "0.54982930968961300175"
        },
        {
            "UTCDate": "2023-10-28",
            "unixTimeStamp": "1698422400",
            "networkUtilization": "0.44974123539359962634"
        }
    ]
}

Get Daily Average Network Hash Rate

Get Daily Transaction Count

Returns the number of transactions performed on the Ethereum blockchain per day.

https://api.w3w.ai/mantle/v1/developer/api
   ?module=stats
   &action=dailytx
   &startdate=2023-10-01
   &enddate=2023-10-28
   &sort=asc
   &apikey=YourApiKeyToken
https://api.socialscan.io/monad-testnet/v1/developer/api
   ?module=stats
   &action=dailytx
   &startdate=2025-01-01
   &enddate=2025-02-28
   &sort=asc
   &apikey=8f9d3e27-a516-4c08-b235-7d94f02ca91b

Query Parameters

Parameter
Description

startdate

the starting date in yyyy-MM-dd format, eg. 2023-10-01

enddate

the ending date in yyyy-MM-dd format, eg. 2023-10-28

sort

the sorting preference, use asc to sort by ascending and desc to sort by descending

Sample response

{
    "status": "1",
    "message": "OK",
    "result": [
        {
            "UTCDate": "2023-10-01",
            "unixTimeStamp": "1696089600",
            "transactionCount": "296823"
        },
        {
            "UTCDate": "2023-10-28",
            "unixTimeStamp": "1698422400",
            "transactionCount": "178375"
        }
    ]
}

Get Daily Average Network Difficulty

[]

Try this endpoint in your

Try this endpoint in your

[]

Try this endpoint in your

Try this endpoint in your

[]

[]

Try this endpoint in your

Try this endpoint in your

[]

🎯
🔗
🔗
https://docs.etherscan.io/api-endpoints/stats-1#get-daily-network-transaction-fee
browser
browser
https://docs.etherscan.io/api-endpoints/stats-1#get-daily-new-address-count
🔗
browser
🔗
browser
https://docs.etherscan.io/api-endpoints/stats-1#get-daily-network-utilization
🔗
browser
🔗
browser
https://docs.etherscan.io/api-endpoints/stats-1#get-daily-average-network-hash-rate
https://docs.etherscan.io/api-endpoints/stats-1#get-daily-transaction-count
🔗
browser
🔗
browser
https://docs.etherscan.io/api-endpoints/stats-1#get-daily-average-network-difficulty