API documentation

Below is a sample GET request along with its corresponding response, taken from the API documentation of The Graphite Explorer. For a more comprehensive understanding of the available endpoints, parameters, and response formats, we encourage you to explore the full documentation.

Example: Accounts - Get balance for a single address

Returns the balance of a given address.

Sample request

https://api.main.atgraphite.com/api
   ?module=account
   &action=balance
   &address=0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae
   &tag=latest
   &apikey=YourApiKeyToken

Request query parameters

Parameter
Description

address*

the string representing the address to check for balance

tag*

the string pre-defined block parameter, either earliest, pending or latest

Sample response

{
    "status": "1",
    "message": "OK",
    "result": "40891626854930000000000" 
}

The full documentation can be found at the link below:

Last updated