Building open data & computing infrastructure for the world without a middleman.
Building open data & computing infrastructure for the world without a middleman.
Building open data & computing infrastructure for the world without a middleman.
Building open data & 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. Grants universal access to anyone, anywhere, anytime, without the need for registration, licensing, or payments and prevents interferences anyone
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, without the need for registration, licensing, interferences anyone, and even its own creators.
The Openmesh Network is designed to collect, store, process, stream, and provide data connectivity for anyone, anywhere, anytime, without the need for registration, licensing, interferences anyone, and even its own creators.




Connectivity & Free Data APIs
Cloud, Compute & Web3 Infrastructure
Big Data & Analytics
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
Dozens of Connections
Support Articles
Connectivity & Free Data APIs
Cloud, Compute & Web3 Infrastructure
Big Data & Analytics
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
Dozens of Connections
Support Articles
Connectivity & Free Data APIs
Cloud, Compute & Web3 Infrastructure
Big Data & Analytics
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
Dozens of Connections
Support Articles
Connectivity & Free Data APIs
Cloud, Compute & Web3 Infrastructure
Big Data & Analytics
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
Dozens of Connections
Support Articles
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

UnifiedAPI
UnifiedAPI
Single endpoint for data without a middleman
Single endpoint for data without a middleman




Openmesh
Network
Openmesh
Network
Openmesh
Network
WebSocket
Live markets & data
(Streaming service)
REST
Access to data products and historical data-as-a-service
GraphQL
Constructing schema & developers can specify the data
Web3 Adapter
Brining query and streaming service in to smart contracts & 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









Many Possibilities
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
We believe, access to reliable unedited information is a fundamental right, an aspect of a free and democratic society, and the only way to scale crypto & web3.
We believe, access to reliable unedited information is a fundamental right, an aspect of a free and democratic society, and the only way to scale crypto & web3.
Open
Source
Every aspect of its code and infrastructure is openly accessible and modifiable
Open
Source
Every aspect of its code and infrastructure is openly accessible and modifiable
Open
Source
Every aspect of its code and infrastructure is openly accessible and modifiable
Open
Source
Every aspect of its code and infrastructure is openly accessible and modifiable
Open
R&D
Decentralized R&D platform for collaboration and PM for developers, engineers, and DAOs
Open
R&D
Decentralized R&D platform for collaboration and PM for developers, engineers, and DAOs
Open
R&D
Decentralized R&D platform for collaboration and PM for developers, engineers, and DAOs
Open
R&D
Decentralized R&D platform for collaboration and PM for developers, engineers, and DAOs
Open
Accounting
Displays all project expenses, HR adn admin transparently to everyone
Open
Accounting
Displays all project expenses, HR adn admin transparently to everyone
Open
Accounting
Displays all project expenses, HR adn admin transparently to everyone
Open
Accounting
Displays all project expenses, HR adn admin transparently to everyone
Open
Infra
Real-time visibility of Openmesh network's infrastructure, usage, energy consumption,
Open
Infra
Real-time visibility of Openmesh network's infrastructure, usage, energy consumption,
Open
Infra
Real-time visibility of Openmesh network's infrastructure, usage, energy consumption,
Open
Infra
Real-time visibility of Openmesh network's infrastructure, usage, energy consumption,
Explore Possibilities with Openmesh
Explore Possibilities with Openmesh
Research
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.
































































PRODUCT
About
SOCIAL