workspace/arch-default
network: live

API Keys

Manage credentials for Arch protocol access.

NAMEKEYCREATEDLAST USEDCALLS (24H)STATUS
Productionarch_live_••••••••••••••••4f2a2026-06-022m ago28,491active
Stagingarch_test_••••••••••••••••9c3b2026-06-101h ago1,204active
CI / Testingarch_test_••••••••••••••••2e7d2026-06-14never0active

Quickstart

shell
# Install
npm install @arch-protocol/sdk

# Initialize
import { Arch } from "@arch-protocol/sdk";
const arch = new Arch({ apiKey: "arch_live_..." });

# Register an agent
await arch.agents.register({
  id: "agent:my-worker",
  capabilities: ["inference", "tool-use"],
});

# Settle a transaction
await arch.settle({
  from: "agent:my-orchestrator",
  to:   "agent:my-worker",
  amount: 0.001,
  unit:  "COMPUTE",
});