Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 650 Bytes

README.md

File metadata and controls

39 lines (30 loc) · 650 Bytes

Coinbase Demo

Installation Instructions.

#Parameters (application/json)

  • to: wallet to send money to
  • amount: value to send
  • currency: E.g. BTC, LTC, ETH
  • accountID: Optional. Default is primary

Sample request!

-URL: 127.0.0.1:3000/send

-Using address

{
  "to": "3ER3MpfV5EyzdG9WosfQycfeb4rA2B2FTM",
  "amount": "0.01",
  "currency": "BTC",
  "accountID": ""
}

-Using email

{
  "to": "[email protected]",
  "amount": "0.01",
  "currency": "LTC",
  "accountID": ""
}