Listen to the new Lend Academy Podcasthttp://www.lendacademy.com/category/podcast/
Links to the main site:
Links to forum:
https://www.lendingclub.com/browse/cashBalanceAj.action?rnd=some_random_number
{"result": "success","cashBalance": "$xxx.xx"}
You can try getting it through this link: Code: [Select]https://www.lendingclub.com/browse/cashBalanceAj.action?rnd=some_random_numberThe response is in JSON, like this:Code: [Select]{"result": "success","cashBalance": "$xxx.xx"}
To gain insight into what calls are being made, the easiest way I found is to use Chrome. For example, on the https://www.lendingclub.com/browse/browse.action page, right mouse click anywhere on the page and select "Inspect element". Chrome will open a console at the bottom of the page. Click on the "Network" tab. Refresh the https://www.lendingclub.com/browse/browse.action page and you'll see all the Ajax calls being made and all the web resources (js, css, etc) being retrieved by the current page.