Transfer/Transactions

Transfer Stellite between users

/v1/transfer

POST https://api.stellite.com/v1/transfer

Transfer Stellite

Query Parameters

Headers

{
    "status":"success",
    "message":{
        "fee": 1,
        "txid":"fb24a5584e60b1a7773c19f4b2b30a798c228ce59fd4a4defcbc0e3cbb58492a",
        "amount":"1337"
    }
}

/v1/transactions

GET https://api.stellite.com/v1/transactions

Recent 5 transactions from logged in user

Headers

{
    "status":"success",
    "message":[{
            "address": "felix@stellite.cash"
            "amount": 1337
            "created_at": 1531698603983
            "fee": 100
            "name": "WolfOfCrypto"
            "txid": "ec6cbc193e93ba99685fdd96ec939c4328"
            "type": "sent via email"
        },{
            "address": "erwin@stellite.cash"
            "amount": 420
            "created_at": 1531698603982
            "fee": 100
            "name": "Erwin Beij"
            "txid": "b7382a7ca5fda64966e01c0b22e161558f"
            "type": "sent via email"
        },{
            "amount": 7331
            "created_at": 1531698603981
            "name": "Hayzam Sherif"
            "txid": "b7382a7ca5fda64966e01c0b22e161558f"
            "type": "incoming"
        }
    ]
}

/v1/alltransactions

GET https://api.stellite.com/v1/alltransactions

All transactions from logged in user

Query Parameters

{
    "status":"success",
    "message":[{
            "address": "felix@stellite.cash"
            "amount": 1337
            "created_at": 1531698603983
            "fee": 100
            "name": "WolfOfCrypto"
            "txid": "ec6cbc193e93ba99685fdd96ec939c4328"
            "type": "sent via email"
        },{
            "address": "erwin@stellite.cash"
            "amount": 420
            "created_at": 1531698603982
            "fee": 100
            "name": "Erwin Beij"
            "txid": "b7382a7ca5fda64966e01c0b22e161558f"
            "type": "sent via email"
        },{
            "amount": 7331
            "created_at": 1531698603981
            "name": "Hayzam Sherif"
            "txid": "b7382a7ca5fda64966e01c0b22e161558f"
            "type": "incoming"
        }
    ]
}

Last updated