C4C logo

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

No data to display

 

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!

 

Copyright 2017 © Crowd Solutions AG. All Rights Reserved.