decryp2kanon / api-server

API Server for Sugarchain

Home Page:https://api.sugarchain.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Getting started


This is RESTful API which will allow you to interact with Sugarchain blockchain.

How to use it?


First of all you have to create config.py file in root of project directory with following content:

rid = 'api-server'
cache = 3600  # Cache request for 1 hour
secret = 'Lorem ipsum dolor sit amet.'
endpoint = 'http://rpcuser:rpcpassword@127.0.0.1:6501/'
host = '0.0.0.0'
port = 1234
debug = True

All request should be send to this endpoint: https://api.mbc.wiki

Responce have following fields:

result: list or object which contains requested data error: this field contains error message in case something went wrong id: api server identifier which is set in config.py file

P.s. keep in mind, that all amounts in this API should be in Satoshis.

About

API Server for Sugarchain

https://api.sugarchain.org/

License:MIT License


Languages

Language:HTML 50.4%Language:Python 49.6%