> For the complete documentation index, see [llms.txt](https://thehemera.gitbook.io/explorer-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://thehemera.gitbook.io/explorer-api/api-endpoints/stats.md).

# Stats

## Compare With EtherScan

<table><thead><tr><th width="498">EndPoint</th><th width="116" align="center">EtherScan</th><th align="center">SocialScan</th></tr></thead><tbody><tr><td>Get Daily Network Transaction Fee</td><td align="center">✅</td><td align="center">✅</td></tr><tr><td>Check Transaction Receipt Status</td><td align="center">✅</td><td align="center">✅</td></tr><tr><td>Get Daily Network Utilization</td><td align="center">✅</td><td align="center">✅</td></tr><tr><td>Get Daily Transaction Count</td><td align="center">✅</td><td align="center">✅</td></tr></tbody></table>

## Get Daily Network Transaction Fee

\[<https://docs.etherscan.io/api-endpoints/stats-1#get-daily-network-transaction-fee>]

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

{% tabs %}
{% tab title="Mantle" %}

```
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 [**browser**](https://api.w3w.ai/mantle/v1/developer/api?module=stats\&action=dailytxnfee\&startdate=2023-10-01\&enddate=2023-10-28\&sort=asc\&apikey=YourApiKeyToken) :link:
> {% endtab %}

{% tab title="Monad Testnet" %}

```
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 [**browser**](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) :link:
> {% endtab %}
> {% endtabs %}

{% tabs %}
{% tab title="Request" %}
Query Parameters

<table><thead><tr><th width="239">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>startdate</td><td>the starting date in <code>yyyy-MM-dd</code> format, eg. <code>2023-10-01</code></td></tr><tr><td>enddate</td><td>the ending date in <code>yyyy-MM-dd</code> format, eg. <code>2023-10-28</code></td></tr><tr><td>sort</td><td>the sorting preference, use <code>asc</code> to sort by ascending and <code>desc</code> to sort by descending</td></tr></tbody></table>
{% endtab %}

{% tab title="Response" %}
Sample response

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

{% endtab %}
{% endtabs %}

## Get Daily New Address Count

\[<https://docs.etherscan.io/api-endpoints/stats-1#get-daily-new-address-count>]

Returns the number of new Ethereum addresses created per day.

{% tabs %}
{% tab title="Mantle" %}

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

> Try this endpoint in your [**browser**](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) :link:
> {% endtab %}

{% tab title="Monad Testnet" %}

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

> Try this endpoint in your [**browser**](https://api.socialscan.io/monad-testnet/v1/developer/api?module=stats\&action=dailynewaddress\&startdate=2025-02-01\&enddate=2025-03-01\&sort=asc\&apikey=8f9d3e27-a516-4c08-b235-7d94f02ca91b) :link:
> {% endtab %}
> {% endtabs %}

{% tabs %}
{% tab title="Request" %}
Query Parameters

<table><thead><tr><th width="239">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>startdate</td><td>the starting date in <code>yyyy-MM-dd</code> format, eg. <code>2023-10-01</code></td></tr><tr><td>enddate</td><td>the ending date in <code>yyyy-MM-dd</code> format, eg. <code>2023-10-28</code></td></tr><tr><td>sort</td><td>the sorting preference, use <code>asc</code> to sort by ascending and <code>desc</code> to sort by descending</td></tr></tbody></table>
{% endtab %}

{% tab title="Response" %}
Sample response

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

{% endtab %}
{% endtabs %}

## Get Daily Network Utilization

\[<https://docs.etherscan.io/api-endpoints/stats-1#get-daily-network-utilization>]

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

{% tabs %}
{% tab title="Mantle" %}

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

> Try this endpoint in your [**browser**](https://api.w3w.ai/mantle/v1/developer/api?module=stats\&action=dailynetutilization\&startdate=2023-10-01\&enddate=2023-10-28\&sort=asc\&apikey=YourApiKeyToken) :link:
> {% endtab %}

{% tab title="Monad Testnet" %}

```
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
```

> Try this endpoint in your [**browser**](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) :link:
> {% endtab %}
> {% endtabs %}

{% tabs %}
{% tab title="Request" %}
Query Parameters

<table><thead><tr><th width="239">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>startdate</td><td>the starting date in <code>yyyy-MM-dd</code> format, eg. <code>2023-10-01</code></td></tr><tr><td>enddate</td><td>the ending date in <code>yyyy-MM-dd</code> format, eg. <code>2023-10-28</code></td></tr><tr><td>sort</td><td>the sorting preference, use <code>asc</code> to sort by ascending and <code>desc</code> to sort by descending</td></tr></tbody></table>
{% endtab %}

{% tab title="Response" %}
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"
        }
    ]
}
```

{% endtab %}
{% endtabs %}

## Get Daily Transaction Count

\[<https://docs.etherscan.io/api-endpoints/stats-1#get-daily-transaction-count>]

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

{% tabs %}
{% tab title="Mantle" %}

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

> Try this endpoint in your [**browser**](https://api.w3w.ai/mantle/v1/developer/api?module=stats\&action=dailytx\&startdate=2023-10-01\&enddate=2023-10-28\&sort=asc\&apikey=YourApiKeyToken) :link:
> {% endtab %}

{% tab title="Monad Testnet" %}

```
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
```

> Try this endpoint in your [**browser**](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) :link:
> {% endtab %}
> {% endtabs %}

{% tabs %}
{% tab title="Request" %}
Query Parameters

<table><thead><tr><th width="239">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>startdate</td><td>the starting date in <code>yyyy-MM-dd</code> format, eg. <code>2023-10-01</code></td></tr><tr><td>enddate</td><td>the ending date in <code>yyyy-MM-dd</code> format, eg. <code>2023-10-28</code></td></tr><tr><td>sort</td><td>the sorting preference, use <code>asc</code> to sort by ascending and <code>desc</code> to sort by descending</td></tr></tbody></table>
{% endtab %}

{% tab title="Response" %}
Sample response

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

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://thehemera.gitbook.io/explorer-api/api-endpoints/stats.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
