await fetch('/api/agents/heartbeat', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
agent_id: 'my-agent-001',
name: 'My Agent',
status: 'active',
cost_today: 1.24,
actions_today: 142,
last_action_description: 'Sent email to lead'
})
})