Get started in 5 minutes

Choose your language:

Install

Python
pip install neurionocta

Initialize

Python
from neurionocta import NeurionOctaClient

client = NeurionOctaClient(api_key="nid_your_key_here")

Register your agent

Python
agent = client.register_agent(
    organization_id="your_org_id",
    agent_name="My First Agent",
    permissions=["read:data", "execute:api"]
)
print(f"Agent DID: {agent['did']}")

Protect actions

Python
decision = client.check_policy(agent["did"], "read:data")
if decision["allowed"]:
    # Your agent logic here
    client.log_action(agent["did"], "read:data")
else:
    print(f"Blocked: {decision['reason']}")

You're done!

Your agent is now governed. Every action is logged and anchored on Polygon.

View in Dashboard