API Reference

Solana Daily Transaction Fees

Solana Daily Transaction Fees

This endpoint returns you the total transaction fees in lamports for the specified date. If no date is specified, it will be defaulted to today's date

🚧

If the current day is queried, the total transaction fees will change as the day has not concluded

Parameters

  • date- (optional) the date string in dd-mm-yyyy format to retrieve the transaction fees

Results

Valid Response

<object>- a JSON object containing the following fields:

  • date:<String>, the date in string
  • totalTxFees:<integer>, the amount of total transaction fees accumulated

Example of a valid response:

{
  "status": "Success",
  "message": "Retrieved Transaction Fees Analytics Data",
  "result": {
    "date": "19-07-2022",
    "totalTxFees": 1249273441325
  }
}

Invalid Response

<object> - a JSON object containing the following fields if the requested account doesn't exist

  • code:<integer>, The error code
  • message:<String>, An error message to indicate which part of the query went wrong
  • status:<String>, The response status following the error code
    • 400 = Bad Request (client side)
    • 500 = Internal Server Error (server side)
Language
Click Try It! to start a request and see the response here!