Flexpi
We provide you with a set of useful services which can really speed up and improve your work on HTML5 applications or games.
Join beta
The commercial version of our services starts up soon - as for now, you can apply to beta.
Beta minified api: http://flexpi.com/api/beta/flexpi.min.js
Flexpi API was used 52555 times.
Log your application activity with super simple Java Script API. You don't need to know any server-side technologies or languages, just define variables and collect data.
- Log users’ clicks.
- Check the level popularity of your game.
- Log special users’ data.
- Localise weak points of your game.
Simple to use:
flex.stats('play', 'game start', function(status){
//calback with status response
})
Add items to a virtual user cart and generate the code for a payment form. After the payment you can get the transaction status. As simple as that, without tons of documentation or strange codes.
- Sell in-game upgrades.
- Offer access codes for hidden sections.
- Make money!
Simple to use:
flex.payment.init(function(){
flex.payment.cart.add('super item', 5.99, 1);
flex.payment.paypal.createFormView('div-id', 'Pay');
}, 'myUserIdetifier - like facebook id from flex.scial');
var cartId = flex.payment.cart.getId;
flex.payment.transactions.get(cartId, function(transaction){
// give super item for User.
})
Reward and motivate users awarding them special badges. In this simple way you can make them happy and give them motivation for further activity. It’s a great way of promoting your games and applications as users get an opportunity to share their achievements with their friends.
- Define easily new badges.
- Give badges to the users.
- Get info about the users badges.
Simple to use:
flex.badges.user.set('user_uniq_id', "badge_id", function(res){
console.log(res);
});
Connect your games and applications with users by social networking websites. At the moment we offer Facebook API.
Simple to use:
flex.social.facebook.feed({ message : 'message', name : 'name', link : 'http://www.flexpi.com', picture : 'http://dl.dropbox.com/u/141331/flexpi-logo.png' }, function(){ // publish result });