Unofficial Jobcan client library for .NET
It can obtain current status from Jobcan webpage.
using YDKK.Client;
var jobcan = await Jobcan.LoginAsync(clientId, email, password);
//If you want to keep session, use keepSession flag
//(It will post empty noop request every 10 minutes like Jobcan webpage
var jobcan = await Jobcan.LoginAsync(clientId, email, password, true);
//Get status
var status = await jobcan.GetStatusAsync();
Probably, not. (Because I don't need such function now.