Issue cards with compliance baked in. Set limits, enforce policies, track every transaction. $49/agent/month.
Explore interactive demo →Every agent card comes with configurable spending limits, category restrictions, and approval thresholds. Policies enforce themselves.
OFAC, AML, PEP — all included. No extra cost. No manual work. Compliance is built into the card, not bolted on after.
See what every agent is spending, in real time. No more waiting for monthly statements. No more surprises.
Deploy an agent with spending controls in seconds. Set daily limits, block categories, require approvals above a threshold. The card enforces your policies automatically — before any transaction settles.
Every transaction is screened before settlement. If a counterparty is on the OFAC SDN list, the transaction is held — not settled. This happens automatically on every card, at no extra cost.
Issue cards for 1 agent or 1,000. Manage spending policies at the fleet level or per-agent. Reassign budgets, freeze cards, update limits — all through the API or dashboard.
Three lines of code. Built-in compliance. Instant deployment.
import { Shulam } from "@shulam/sdk";
const shulam = new Shulam({ apiKey: "sk_live_..." });
// Issue a card with built-in compliance
const card = await shulam.cards.issue({
agentId: "agent_7a2f",
dailyLimit: 500_000_000n, // $500 USDC
categories: { blocked: ["gambling", "weapons"] },
approvalThreshold: 250_000_000n, // Require approval >$250
});
console.log(card.id); // "card_9bc1..."
console.log(card.status); // "active"The old way vs. the Shulam way.
| Capability | Manual Process | Shulam |
|---|---|---|
| Card issuance | Days (application + approval) | Seconds (API call) |
| Spending controls | Monthly limits, post-hoc | Per-transaction, pre-settlement |
| Compliance | Separate vendor, extra cost | Built-in, included |
| Visibility | Monthly statement | Real-time feed |
| Cost | $65K/yr (human compliance officer) | $49/agent/month |