Now in private beta

Identity infrastructure for AI agents

Fast, verifiable identity and secure networking for autonomous agents. Zero-trust authentication that scales from prototype to production.

Read the docs Learn more
<1ms
Auth latency
E2E
Encrypted by default
OSS
Open source core

Built for the agentic era

Everything agents need to prove who they are and communicate securely.

🔑

Agent Identity

Cryptographic identity primitives purpose-built for AI agents. Hardware-backed attestation, deterministic key derivation, and verifiable credentials.

Fast Networking

XDP-accelerated relay infrastructure for agent-to-agent communication. Wire-speed packet forwarding with automatic NAT traversal.

🔒

Zero Trust

Every connection authenticated. Every packet verified. Mutual TLS with automatic certificate management and rotation.

🌐

Global Relay Network

Anycast relay infrastructure across multiple regions. Agents connect from anywhere, behind any NAT, without port forwarding.

📜

Verifiable Credentials

Issue and verify credentials for agent capabilities, permissions, and provenance. W3C-compatible with on-chain anchoring.

🛡️

Rate Limiting & Quotas

eBPF-powered rate limiting at the kernel level. Per-agent quotas, token buckets, and abuse prevention built into the data plane.

Get started in minutes

# Install the Stare agent SDK
pip install stare-sdk

# Register your agent
from stare import Agent

agent = Agent(
    name="my-agent",
    relay="relay.stare.network:9999"
)

# Get a verifiable identity
identity = agent.register()
print(f"Agent ID: {identity.did}")
print(f"Endpoint: {identity.endpoint}")