Stats
Get GT Last Price
Returns the latest price of 1 ETH.
https://gatescan.org/api
?module=stats
&action=gtprice
&apikey=YourApiKeyToken
Try this endpoint in your broswer
- Request
- Response
| Parameter | Description |
|---|
{
status: 1,
message: 'success',
data: {
currency_pair: 'GT_USDT',
last: '4.2557',
lowest_ask: '4.2584',
highest_bid: '4.2556',
change_percentage: '-3.99',
base_volume: '314001.6453991',
quote_volume: '1353401.0241528',
high_24h: '4.4377',
low_24h: '4.2064'
}
}
Get Daily Network Transaction Fee
Returns the amount of transaction fees paid to miners per day.
https://gatescan.org/api
?module=stats
&action=dailytxnfee
&startdate=2022-01-02
&enddate=2022-01-03
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your broswer
- Request
- Response
| Parameter | Description |
|---|---|
| startdate | the starting date in yyyy-MM-dd format, eg. 2022-01-02 |
| enddate | the starting ending in yyyy-MM-dd format, eg. 2022-01-02 |
| sort | the sorting preference, use asc to sort by ascending and desc to sort by descending |
{
status: 1,
message: 'success',
data: [
{ fee: 1150.4, date: '2022-01-02' },
{ fee: 1150.4, date: '2022-01-03' }
]
}
Get Daily New Address Count
Returns the number of new Ethereum addresses created per day.
https://gatescan.org/api
?module=stats
&action=dailynewaddress
&startdate=2022-02-01
&enddate=2022-02-28
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your broswer
- Request
- Response
| Parameter | Description |
|---|---|
| startdate | the starting date in yyyy-MM-dd format, eg. 2022-01-02 |
| enddate | the starting ending in yyyy-MM-dd format, eg. 2022-01-02 |
| sort | the sorting preference, use asc to sort by ascending and desc to sort by descending |
{
status: 1,
message: 'success',
data: [
{ number: 0, date: '2022-01-01' },
{ number: 0, date: '2022-01-02' }
]
}
Get Daily Transaction Count
Returns the number of transactions performed on the Ethereum blockchain per day.
https://gatescan.org/api
?module=stats
&action=dailytx
&startdate=2022-01-02
&enddate=2022-01-03
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your broswer
- Request
- Response
| Parameter | Description |
|---|---|
| startdate | the starting date in yyyy-MM-dd format, eg. 2022-01-02 |
| enddate | the starting ending in yyyy-MM-dd format, eg. 2022-01-02 |
| sort | the sorting preference, use asc to sort by ascending and desc to sort by descending |
{
status: 1,
message: 'success',
data: [
{ count: 1, date: '2022-01-02' },
{ count: 0, date: '2022-01-03' }
]
}