spacemeshos / explorer-backend

Spacemesh explorer backend designed to provide data for explorer-frontends
GNU General Public License v3.0
6 stars 2 forks source link

Explorer-backend

Spacemesh explorer backend designed to provide data for explorer-frontends

Explorer Software Architecture

Using the Explorer Backend API

The explorer backend provides a public REST API that can be used to get data about a Spacemesh network. Follow these steps to use the API for a public Spacemesh network:

  1. Obtain a currently available explorer API endpoint from the Spacemesh public web services endpoint. This endpoint lists all available Spacemesh networks.
  2. Build a REST request using the endpoint. For example, explorer api url for mainnet is https://mainnet-explorer-api.spacemesh.network/ then the network-info data is available at https://mainnet-explorer-api.spacemesh.network/network-info.
  3. Issue an http 'GET' request to get the data. e.g. curl https://mainnet-explorer-api.spacemesh.network/network-info.
  4. Live long and prosper.

Paging and pagination

{"totalCount":1020,"pageCount":51,"perPage":20,"next":2,"hasNext":true,"current":1,"previous":1,"hasPrevious":false}}

Use this pagination data to figure out how many calls you need to make and which what params in order to get all the data.

API Capabilities

The API is not properly documented yet. The best way to identity the supported API methods is via the api server source code.

API Usage Examples