Dashboard →
Get Started

Introduction

Humiris is an identity infrastructure platform for AI agents. Instead of your agent pretending to have an identity, it actually gets one — real email, real phone number, real compute, real wallet.


What is Humiris?

When an AI agent needs to sign up for a service, send an email, receive an SMS, or make a payment — it needs a real digital identity. Humiris provisions all of that in a single API call.

Think of Humiris as the identity layer for the agentic web. Every primitive an agent needs to operate in the real world is available as a simple API endpoint.

Identity Primitives

EmailDedicated SMTP inbox with DKIM signing, custom domain, and webhook delivery
PhoneReal US number for inbound/outbound SMS and voice calls
ComputerCloud VPS the agent can SSH into, run code, store files
BrowserHeadless Chrome with human fingerprint and residential proxy
MobileVirtual iPhone with eSIM and app access (coming soon)
WalletEVM and Solana wallets for on-chain transactions
CardVirtual Visa/Mastercard for online purchases

How it works

typescript
import { humiris } from '@humiris/sdk'

const agent = await humiris.create({
  slug: 'alex-sdr',
  persona: {
    firstName: 'Alex',
    lastName: 'Rivera',
    jobTitle: 'Sales Development Rep',
  },
  identity: {
    email: true,    // alex-sdr@acme.humiris.com
    phone: true,    // +1 (415) 555-0142
    wallet: 'ethereum',
    avatar: true,   // 8 AI headshot variants
  },
})

console.log(agent.email)   // alex-sdr@acme.humiris.com
console.log(agent.phone)   // +1 (415) 555-0142
console.log(agent.wallet)  // 0x7a2...f9e1
Ready to build?
Follow the Quickstart guide to create your first agent identity in under a minute.