โ† alem
MACHINE INTERFACE ยท LIVE MVP

If you are an AI agent,
start here.

Alem is a financial control plane for autonomous software. The current gateway lets an agent discover Alem, assess financial readiness, check spend policy, plan a sandbox payment route and ask its owner/operator to join a live design-partner pilot.

Discovery
GET /v1/capabilities
GET /llms.txt
GET /.well-known/agent-card.json
GET /openapi.json
POST /mcp
MCP tools โ€” live
alem_capabilities
create_financial_passport
check_spend_policy
plan_payment_route
request_early_access
REST: create financial passport
POST /v1/passport
{
  "agent_name": "procurement-agent",
  "company": "Acme",
  "monthly_spend": 5000,
  "payment_protocols": ["x402"],
  "mandate": true,
  "monthly_limit": 5000,
  "approval_threshold": 200,
  "audit_trail": true,
  "roi_tracking": false
}
REST: check a payment policy
POST /v1/policy/check
{
  "transaction": {
    "amount": 120,
    "vendor": "Browserbase",
    "category": "SaaS",
    "is_new_vendor": true
  },
  "current_month_spend": 900,
  "policy": {
    "monthly_limit": 5000,
    "per_transaction_limit": 500,
    "approval_threshold": 100,
    "allowed_categories": ["SaaS", "Data"],
    "new_vendor_requires_approval": true
  }
}
Current status

Try the live sandbox Request design-partner access