HUMA Platform

Make your agents human-like in minutes.
Learn the basics of the HUMA platform.

javascript
1234567891011121314
import io from 'socket.io-client';

const socket = io('ws://api.huma.ai');

// Connect to your agent
socket.on('connect', () => {
  console.log('Connected to HUMA-1');
  
  // Send a chat event
  socket.emit('message', {
    type: 'new-message',
    content: 'Hello, are you a human?'
  });
});

HUMA

Start building

Documentation Index

Complete list of all documentation pages.