NU NHI is a non-human identity broker that issues scoped, short-lived credentials to AI agents and automated systems. Every token is policy-bound, audited, and rotatable — so your agentic workflows stay compliant, traceable, and revocable at any time.
How it works
01 · REGISTER
Define each agent or service account with allowed scopes and TTLs.
02 · POLICY
Declare access policies in YAML or the UI; least-privilege enforced.
03 · ISSUE
A scoped, short-lived token is minted and bound to the agent.
04 · USE
The agent accesses only its bound systems via pre-built connectors.
05 · AUDIT
Every issuance and use logged; rotate or revoke on demand.

Review the live inventory of non-human identities, rotate credentials on demand, and export a complete audit trail for compliance. Every issuance, use, and revocation is signed and logged.
Issue your first scoped token in minutes. Open-core, self-hostable, and audited from the first call.
Open-core · Self-hostable · Audited by default
Issue short-lived credentials with fine-grained scope — agents get exactly what they need, nothing more.
Declare access in YAML or the UI; enforce least-privilege across every agent and connector.
Bind credentials to specific systems, workspaces, and APIs via pre-built connectors.
Every issuance, use, and revocation is logged and exportable for compliance review.
Request a credential for an agent with the exact scope it needs. Short-lived, policy-checked, and audited by default.
# issue a scoped, short-lived token
curl -X POST https://api.nunhi.co/v1/tokens \
-H "Authorization: Bearer $NU_NHI_KEY" \
-d '{ "agent": "billing-bot",
"scope": "invoices:read", "ttl": "15m" }'
# → 201 Created
{ "token": "tok_9Fa…", "scope": "invoices:read",
"expires": "2026-06-20T15:42Z" }