Give us a Call: 1-888-209-7687 or E-mail Us Directly.

The No Hassle Backend For Your Mobile App

No matter the platform, we provide the backend

Cloud Scalable

We have built a robust and scalable cloud so that you can have a reliable mobile app backend.

Easy User Management

You can quickly add and manage your users all through our API.

NO

Credit Card

Required

Unlimited Objects

Unlike other cloud backend providers, we allow you to store as many objects as you like in your accounts allotted space.

Push & SMS Notifications

Push and SMS notifications will be coming soon to our API.

Look how easy it is to get started

  • It takes no effort to start saving data objects against our API once you have installed one of our API libraries.

    Windows Phone
    var client = new HoppioClient(HOPPIO_KEY);
    var obj = new MyObject { Comment = "Hello World" };
    client.Create(obj);
    JavaScript
    jQuery.hoppio.init({ appKey: HOPPIO_KEY });
    jQuery.hoppio.createObject("MyObject", { comment: "Hello World" });

    Adding a new user has never been easier, not only do we make sure do we make sure their data is secure, but we also take the effort out of the authentication process.

    Windows Phone
    var client = new HoppioClient(HOPPIO_KEY);
    var user = new User { Username = "nick", Password = "{s3curePassw0rd]" };
    client.CreateUser(user);
    JavaScript
    jQuery.hoppio.init({ appKey: HOPPIO_KEY });
    jQuery.hoppio.createUser({ username: "nick", password: "{s3curePassw0rd]" });

    With our temporary storage engine, you can use our API as a temporary cache, so that you objects only stick around as long as you want them too.

    Windows Phone
    var obj = new { 
      Comment = "Hello World", 
      objectExpiresOn = DateTime.UtcNow.AddMinutes(15) };
    
    var client = new HoppioClient(HOPPIO_KEY);
    client.Create(obj);
    JavaScript
    var expiresOn = new Date();
    expiresOn.setMinutes(expiresOn.getMinutes() + 15);
    								
    jQuery.hoppio.init({ appKey: HOPPIO_KEY });
    jQuery.hoppio.createObject("MyObject", 
      { comment: "Hello World", objectExpiresOn: expiresOn.toJSON() });