Connect any device to each other, without internet.

The infrastructure-free solution for relaying data reliably and securely between devices or to the cloud.

Try nowTalk to an expert

SpaceTeam

Offline mobile multiplayer game

Lavu

PoS and order management system

OkDetect

Contact tracing and personalised health alerts

Cash

Peer-to-peer proximity payments

Ensure your business operations with offline connectivity.

Your Network Engineer as a Service

HypeSDK takes away the pain of peer-to-peer and mesh networking, device OS interoperability, and packet forwarding over different wireless technologies - so that you can focus on your product features.

First Class Security

Each device is uniquely identified and authenticated on the network, and all messages sent with end-to-end encryption, with zero overhead on developer experience.

No single point of failure

HypeSDK leverages mesh technology to create a resilient offline network. Data is realyed and distributed across nodes to reach the closest internet exit point, whenever needed.

Reliable Local connectivity for your operations.

With HypeSDK, your apps can communicate directly with each other, so you can keep serving your team or customers even with flaky or no internet connectivity.

Faster time to market.

HypeSDK can be easily integrated with existing applications without imposing major technical redesigns – whatever your use case is, get started with within minutes.

Configure your own project.

Leverage offline networking with a simple API.

Get your app up and running with HypeSDK in just a couple of minutes.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
- (void)requestHypeToStart
{
   [HYP start];
}
- (void)hypeDidFindInstance:(HYPInstance *)instance
{
   [HYP resolveInstance:instance];
}
- (void)hypeDidResolveInstance:(HYPInstance *)instance
{
   NSData * data = [@"Hello World" dataUsingEncoding:NSUTF8StringEncoding];
   [HYP sendData:data
      toInstance:instance];
}