Skip to content

Developers

Developer experience is the product

Type-safe SDK, idempotent operations, signed webhooks and a sandbox with test funds. Ship your first transfer in an afternoon.

NodePythoncURL
import { Hamirach } from "@hamirach/sdk"

const hm = new Hamirach({ apiKey: process.env.HAMIRACH_KEY })

// Create a user and a wallet in one call
const user = await hm.users.create({ email })
await hm.wallets.ensure(user.id, ["polygon", "base"])

// Quote and pay out to a bank — fiat abstracted
const q = await hm.offramp.quote({ amount: 250, asset: "USDC", to: "CLP" })
await hm.offramp.execute(q.id)

MCP server

One server, the tools your agent needs

Register hamirach-fintech and your agent gets typed, permissioned tools — gated by the same mandates and tiers as every other surface.

send_funds
get_balances
get_wallet_address
get_transactions
get_supported_tokens
get_network_recommendation
mcp.json
{
  "mcpServers": {
    "hamirach-fintech": {
      "command": "npx",
      "args": ["@hamirach/mcp"],
      "env": { "HAMIRACH_API_KEY": "hm_live_…" }
    }
  }
}