The Winston API documentation is your resource for integrating Winston in to your next application!
With in this repository you will find resource on how to integrate Winston directly in to your life.
Winston is driving to create a place where you can learn to earn. We are building tools including a web3 shopping cart, social media integrations and other application integrations that allow you to utilze the Winston network and build on our decentralized financial future.
- General API Documentation
- Members API Documentation
- Card Services API Documentation
- Merchant Services API Documentation
In order to use some of Winston's API features you will need to authenticate with your API Developers Account Credentials. You can get your API Access by creating an account here
{
'address': 'String',
'token': 'String',
'hash': 'String',
}
Developer Note Todo
Object returned from /authenticate
const message = {
address,// String
token, // String
hash, // String
}
const signer = ethers.Wallet.getSigner();
const headerSignature = signer.signMessage(JSON.stringfy(message));
API requests will require the following x-headers:
{
'x-api-user': `{address}`,
'x-session-token': `{accessToken}`,
'x-session-signature': `{headerSignature}`,
}