Since the very beginning we decided to share our knowledge with all new comers who are interested in fintech – because we are not just one more «cash in – cash out» investor, we are ecosystem builders. We think that the future of fintech belongs not only to current existing companies, but also to anyone who is inspired today to start their new venture. Thus, with this venture research we try to inspire and distribute it for free.
The first issue of Money Of The Future in 2012 was one of the first venture fintech researches in the world. Previously it was annual report and now we are publishing it twice a year, because fintech became so fast-growing and big.
And still it is one of the most respectful reports — you can see data, charts, infographic, conclusions and predictions from our report. Now we have more than 50K downloads of each report (main countries: US, UK, Germany, Singapore, Russia).
Additionally, in 2015, we launched FintechRanking.com where we aggregate the most important articles, news, events that shift the industry forward. It is very convenient place to see all fintech-related news as a feed in one place. Recently BBVA Compass included FintechRanking.com to its top 10 list of the most valuable fintech related newspapers and blogs.
[insert_php]
$xmlstr = @file_get_contents(‘http://fintechranking.com/feed/’);
if ($xmlstr != false) {
$xml = new SimpleXMLElement($xmlstr);
}
if (isset($xml)) {
$count = 0;
foreach ($xml->xpath(‘//item’) as $item) {
$count++;
if ($count < 5) { $date = date_create($item->pubDate);
$date = date_format($date, «d M Y»);
echo ‘
‘.$date .’
‘;
echo ‘‘;
echo ‘
‘.$item->title.’
‘;
echo ‘
‘;
}
}
}
[/insert_php]