Open Beta — Network Online

Send Data Between Systems
Like Calling a Function
Neuronum is a secure relay network to exchange encrypted data directly between systems without managing a backend

kybercell™ is the official Neuronum client
request.py
import asyncio
from neuronum import Cell

async def main():
    async with Cell() as cell:
        tx_response = await cell.activate_tx(
          "receiver_cell_id",
          {"msg": "Ping"}
        )
        print(tx_response)

asyncio.run(main())
response.py
import asyncio
from neuronum import Cell

async def main():
    async with Cell() as cell:
        async for tx in cell.sync():
            data = tx.get("data", {})

            await cell.tx_response(
                tx.get("transmitter_id"),
                {"msg": "Pong"},
                data.get("public_key", "")
            )

asyncio.run(main())

Pricing Everything is free during the open beta

Community

Build & Test Environment
Free Forever
  • Neuronum SDK
  • E2E Encrypted
  • No Credit Card
  • Rate Limit
Get Started

Business

Production Environment
Free Beta
  • Everything in Community
  • No Rate Limit
  • Verified Business
  • Employee Accounts
Contact Us