Get account balance
You can use the API to check your account balance.
Request
using RestSharp;
var client = new RestClient("https://api-us1.stannp.com/v1/accounts/balance?api_key={API_KEY}");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
Response
{ "success": true, "data": { "balance": "214.42" } }
Top up balance
You can use the API to top up your balance if you have a saved card and set one to default.
Request
using RestSharp;
var client = new RestClient("https://api-us1.stannp.com/v1/accounts/topup?api_key={API_KEY}");
var request = new RestRequest(Method.POST);
request.AddParameter("net", "100.00");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
Response
{ "success": true, "data": { "receipt_pdf": "https:\/\/www.stannp.com\/invoice\/12345--abcdefg-uhusdsfsi34545-fgfdfdb.pdf" } }