Building decentralized data and computing infrastructure for the world without a middleman.

Building decentralized data and computing infrastructure for the world without a middleman.

Building decentralized data and computing infrastructure for the world without a middleman.

Building decentralized data and computing infrastructure for the world without a middleman.

Access to reliable information is a fundamental right, an aspect of a free and democratic society

Access to reliable information is a fundamental right, an aspect of a free and democratic society

Access to reliable information is a fundamental right, an aspect of a free and democratic society

Access to reliable information is a fundamental right, an aspect of a free and democratic society

Why


Data & information is the most valuable commodity in the world. Today, a few big corporations manage 90% of the world's data and IT infrastructure, and we are supposed to trust them. We challenge you to question this norm.


Vision


Building the next generation of open infrastructure that will be pivotal in shaping the next 10-20 years of the internet, preserving democracy, and ensuring a free flow of information.

The core


Decentralized, distributed and immutable by design. Granting universal access to anyone, anywhere, anytime, without the need for registration, licensing, or payments and prevents interferences.

New Kind of Global Network

New Kind of Global Network

The possibilities are endless.

The possibilities are endless.

The Openmesh Network is designed to collect, store, process, stream, and provide data connectivity for anyone, anywhere, anytime. It operates without the need for registration, licensing, or interference from anyone, including its own creators.

The Openmesh Network is designed to collect, store, process, stream, and provide data connectivity for anyone, anywhere, anytime. It operates without the need for registration, licensing, or interference from anyone, including its own creators.

Connectivity & Free Data APIs

Cloud, Compute & Web3 Infrastructure

Build with Governance & Transparency

Data - UnifiedAPI

Single endpoint for data, APIs, no registration, no licenses.

Power thousands of applications (mobile & web), dAps, protocols, DAOs. Built for developers, data scientists, game developers, blockchain protocols, and startup.

345

m+

Datapoints

500

+

Data Products

Free

Data APIs

130

+ GB

Ingest Daily

Connectivity & Free Data APIs

Cloud, Compute & Web3 Infrastructure

Build with Governance & Transparency

Data - UnifiedAPI

Single endpoint for data, APIs, no registration, no licenses.

Power thousands of applications (mobile & web), dAps, protocols, DAOs. Built for developers, data scientists, game developers, blockchain protocols, and startup.

345

m+

Datapoints

500

+

Data Products

Free

Data APIs

130

+ GB

Ingest Daily

1
import sys
2
import websockets
3
import asyncio
4
import json
5
6
#connects to endpoint ENDPOINT
7
async def main():
8
ENDPOINT = 'wss://ws.shared.projectx.network'
9
async with websockets.connect(ENDPOINT) as websocket:
10
await websocket.send('{"action": "subscribe", "exchange" : "%s", "channel": "%s", "symbol": "%s"}' % (sys.argv[1], sys.argv[2], sys.argv[3]))
11
async for message in websocket:
12
msg = json.loads(message)
13
print(json.dumps(msg, indent=4, default=str))
14
15
if __name__ == "__main__":
16
try:
17
asyncio.run(main())
18
except KeyboardInterrupt:
19
print("\nExiting...")

Connectivity & Free Data APIs

Cloud, Compute & Web3 Infrastructure

Build with Governance & Transparency

Data - UnifiedAPI

Single endpoint for data, APIs, no registration, no licenses.

Power thousands of applications (mobile & web), dAps, protocols, DAOs. Built for developers, data scientists, game developers, blockchain protocols, and startup.

345

m+

Datapoints

500

+

Data Products

Free

Data APIs

130

+ GB

Ingest Daily

Connectivity & Free Data APIs

Cloud, Compute & Web3 Infrastructure

Build with Governance & Transparency

Data - UnifiedAPI

Single endpoint for data, APIs, no registration, no licenses.

Power thousands of applications (mobile & web), dAps, protocols, DAOs. Built for developers, data scientists, game developers, blockchain protocols, and startup.

345

m+

Datapoints

500

+

Data Products

Free

Data APIs

130

+ GB

Ingest Daily

Xnode

Xnode

Revolution Has Started!

Revolution Has Started!

Build your own infrastructure, data clouds, data connectivity, observability, APIs, analytics in minutes, instead of weeks.

Build your own infrastructure, data clouds, data connectivity, observability, APIs, analytics in minutes, instead of weeks.

Pay only for bare metal servers.

No license, no setup fees.

Connect to hundreds of apps, blockchains

Up to

27

x

Speed for Build: Speeds up development and deployment.

Up to

6

x

Cost Saving: Lowers overall expenses, no extra fees.

Up to

5

x

Access to Third Parties: Wide-ranging external data access.

Up to

8

x

Composability: Easy integration and customization with other systems.

Deployment cost and ongoing costs

Xnode

Others

Speed for production

Xnode

Others

Build Your Own Infrastructure in Minutes

Create your infrastructure quickly with our drag-and-drop design framework. Instead of spending weeks coding and integrating services and applications, you can now build your infrastructure in the region of your choice, with the workloads and applications you need, all in just minutes.

Democratizing Data: Free Immutable Data to the World

Modularized Infrastructure for Faster Deployment

Powerful One-Click Deployment

Many Integrations. Endless Possibilities

Build Your Own Infrastructure in Minutes

Create your infrastructure quickly with our drag-and-drop design framework. Instead of spending weeks coding and integrating services and applications, you can now build your infrastructure in the region of your choice, with the workloads and applications you need, all in just minutes.

Democratizing Data: Free Immutable Data to the World

Modularized Infrastructure for Faster Deployment

Powerful One-Click Deployment

Many Integrations. Endless Possibilities

Build Your Own Infrastructure in Minutes

Create your infrastructure quickly with our drag-and-drop design framework. Instead of spending weeks coding and integrating services and applications, you can now build your infrastructure in the region of your choice, with the workloads and applications you need, all in just minutes.

Democratizing Data: Free Immutable Data to the World

Modularized Infrastructure for Faster Deployment

Powerful One-Click Deployment

Many Integrations. Endless Possibilities

Live markets & data

(Streaming service)

Access to data products and historical data-as-a-service

Constructing schema & developers can specify the data

Web3 Adapter

Integrating query & streaming services into smart contracts and DAOs

Integrating query and streaming services into smart contracts and DAOs

A single endpoint for data to anyone, anywhere, without licenses, registrations, or fees.

A single endpoint for data to anyone, anywhere, without licenses, registrations, or fees.

A single endpoint for data to anyone, anywhere, without licenses, registrations, or fees.

A single endpoint for data to anyone, anywhere, without licenses, registrations, or fees.

Power thousands of mobile, web, dApp and smart contracts. Made by developers for developers.

Power thousands of mobile, web, dApp and smart contracts. Made by developers for developers.

Power thousands of mobile, web, dApp and smart contracts. Made by developers for developers.

Mobile & Web

dApps & smart contracts

import sys
import websockets
import asyncio
import json

# Connects to the endpoint ENDPOINT
async def main():
    ENDPOINT = 'wss://ws.shared.projectx.network'
    async with websockets.connect(ENDPOINT) as websocket:
        await websocket.send(
            '{"action": "subscribe", "exchange": "%s", "channel": "%s", "symbol": "%s"}'
            % (sys.argv[1], sys.argv[2], sys.argv[3])
        )
        async for message in websocket:
            msg = json.loads(message)
            print(json.dumps(msg, indent=4, default=str))

if __name__ == "__main__":
    try:
        asyncio.run(main())
    except KeyboardInterrupt:
        print("\nExiting...")
import sys
import websockets
import asyncio
import json

# Connects to the endpoint ENDPOINT
async def main():
    ENDPOINT = 'wss://ws.shared.projectx.network'
    async with websockets.connect(ENDPOINT) as websocket:
        await websocket.send(
            '{"action": "subscribe", "exchange": "%s", "channel": "%s", "symbol": "%s"}'
            % (sys.argv[1], sys.argv[2], sys.argv[3])
        )
        async for message in websocket:
            msg = json.loads(message)
            print(json.dumps(msg, indent=4, default=str))

if __name__ == "__main__":
    try:
        asyncio.run(main())
    except KeyboardInterrupt:
        print("\nExiting...")
import sys
import websockets
import asyncio
import json

# Connects to the endpoint ENDPOINT
async def main():
    ENDPOINT = 'wss://ws.shared.projectx.network'
    async with websockets.connect(ENDPOINT) as websocket:
        await websocket.send(
            '{"action": "subscribe", "exchange": "%s", "channel": "%s", "symbol": "%s"}'
            % (sys.argv[1], sys.argv[2], sys.argv[3])
        )
        async for message in websocket:
            msg = json.loads(message)
            print(json.dumps(msg, indent=4, default=str))

if __name__ == "__main__":
    try:
        asyncio.run(main())
    except KeyboardInterrupt:
        print("\nExiting...")
import sys
import websockets
import asyncio
import json

# Connects to the endpoint ENDPOINT
async def main():
    ENDPOINT = 'wss://ws.shared.projectx.network'
    async with websockets.connect(ENDPOINT) as websocket:
        await websocket.send(
            '{"action": "subscribe", "exchange": "%s", "channel": "%s", "symbol": "%s"}'
            % (sys.argv[1], sys.argv[2], sys.argv[3])
        )
        async for message in websocket:
            msg = json.loads(message)
            print(json.dumps(msg, indent=4, default=str))

if __name__ == "__main__":
    try:
        asyncio.run(main())
    except KeyboardInterrupt:
        print("\nExiting...")

Generate remarkable deep insights in seconds.

Generate remarkable deep insights in seconds.

Generate remarkable deep insights in seconds.

Generate remarkable deep insights in seconds.

Write your questions using natural language instead of coding

Write your questions using natural language instead of coding

Write your questions using natural language instead of coding

Write your questions using natural language instead of coding

Pythia X

Go

Pythia X

Go

Pythia Pro

Push your analytics to extreme levels

Push your analytics to extreme levels

Push your analytics to extreme levels

Push your analytics to extreme levels

Design, build, visualize, deploy, and store powerful data products directly in your web3 wallet.

Design, build, visualize, deploy, and store powerful data products directly in your web3 wallet.

Design, build, visualize, deploy, and store powerful data products directly in your web3 wallet.

Design, build, visualize, deploy, and store powerful data products directly in your web3 wallet.

Open-source

Open-source

Open-source

Open-source

Built using Apache Superset™ open-source framework

Built using Apache Superset™ open-source framework

Built using Apache Superset™ open-source framework

Built using Apache Superset™ open-source framework

50+ Visualizations

50+ Visualizations

50+ Visualizations

50+ Visualizations

Pre-installed visualizations and charts for your needs

Pre-installed visualizations and charts for your needs

Pre-installed visualizations and charts for your needs

Pre-installed visualizations and charts for your needs

100% ownership

100% ownership

100% ownership

100% ownership

Save your quires & data products directly to your web3 wallet

Save your quires & data products directly to your web3 wallet

Save your quires & data products directly to your web3 wallet

Save your quires & data products directly to your web3 wallet

Ecosystem

Ecosystem

Ecosystem

Ecosystem

Community developed data products & dashboards

Community developed data products & dashboards

Community developed data products & dashboards

Community developed data products & dashboards

Better Governance

Better Governance

Openmesh ensures governance and transparency through decentralized decision-making, transparent communication, community involvement, and regular audits for accountability and R&D alignment.

Openmesh ensures governance and transparency through decentralized decision-making, transparent communication, community involvement, and regular audits for accountability and R&D alignment.

Explore Possibilities with Openmesh

Explore Possibilities with Openmesh

Meet Openmesh contributors

Meet Openmesh contributors

Meet Openmesh contributors

Our vision is to democratize data and address information asymmetry at a scale. Data & information is the most valuable commodity in the world.

Our vision is to democratize data and address information asymmetry at a scale. Data & information is the most valuable commodity in the world.