We make it possible for you to build serverless applications with our secure, scalable web APIs for web and mobile development.

Create something great.

Social timelines, checkins, collaborative documents, retail POS, trading, and real-time purchase orders are just a few of the possibilities.

Identity and Messaging APIs.

Our Identity service provides secure registration and login for your applications. Our Messaging service allows you to share data in real-time across multiple devices.

var spire = new Spire();
 
// Get the application from the spire.io API
spire.getApplication('your-app-key', function(error, application){
  // this should come from some kind of user input
  var member = {
    login: 'john@test.com',
    password: 'johnspassword'
  };
 
  // create a member
  application.createMember(member, function(err, member){
    console.log('member created!', member);
  });
 
  // try to authenticate an existing member
  application.authenticateMember(member, function(err, member){
    console.log('member authenticated!', member);
  });
});

Identity

Our Identity service provides secure registration and login for your applications.

Sign me up! Pricing Info »
// create a new instance of
var spire = new Spire();
 
// don't ever embed your account secret directly like this
// use our Identity API instead ...
spire.start('your-account-secret', function(error){
 
  // add a listener to fire when new messages are received
  spire.session.subscribe('my channel', {last:'now'}, function(messages){
    $(messages).each(function(i, message){
        $('body').append("<p>" + message + "</p>");
    });
  });
 
  // publish a message and take advantage of the optional callback
  application.publish('my channel', 'hello serverless world!');
});

Messaging

Our Messaging service allows you to share data in real-time across multiple devices.

Sign me up! Pricing Info »

Blog

Libraries

spire.io.rb

A Ruby client library for spire.io.

spire.io.js

A JavaScript client library for spire.io.

spire.io.java

A Java client library for spire.io.