explorer_backend

package module
v1.6.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 9, 2024 License: GPL-3.0 Imports: 0 Imported by: 0

README

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
  • Use the pagesize and page params to get paginated results. The first page number is 1, so for example, to get the first 20 layers call: https://mainnet-explorer-api.spacemesh.network/layers?pagesize=20&page=1 and to get the next 20 layers use: https://mainnet-explorer-api.spacemesh.network/layers?pagesize=20&page=2
  • API results which support pagination include pagination data in the response json. e.g.:
{"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

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL