
Crowd4Cash REST API Demo
This is a demo application of the Crowd4Cash REST API. At this point, for simplicity's sake we demonstrate only how to get the open loans data. More examples, including an automatic bidding example coming soon!
List of Loans
Please check the "button click handler" code example below:
using (var httpClient = new HttpClient())
{
var json = httpClient.GetStringAsync(new Uri("https://api.crowd4cash.ch/loans/en?key=YOUR_KEY")).Result;
var data = JsonConvert.DeserializeObject(json);
GridView1.DataSource = data.loans;
GridView1.DataBind();
}
And voila! Now you are 100% ready to consume our REST API. Enjoy!
Note: the example above is for ASP.NET WebForms, but upon your request, we could send you an example (source-code) in your preferer technology instead e.g. ASP.NET Core, PHP etc.
Copyright 2017 © Crowd Solutions AG. All Rights Reserved.