Documentation

Everything you need to build, deploy, and scale your virtual workforce

Quick Start Guide

1

Install the SDK

npm install @one-many/sdk
# or
pip install one-many-sdk
2

Authenticate

import { OneMany } from '@one-many/sdk';

const client = new OneMany({
  apiKey: process.env.ONE_MANY_API_KEY
});
3

Create Your First Persona

const cfo = await client.personas.create({
  role: 'CFO',
  name: 'Sarah Chen',
  traits: {
    expertise: ['finance', 'strategy'],
    personality: 'analytical',
    communication: 'direct'
  },
  knowledge: {
    documents: ['Q4-report.pdf', 'budget.xlsx']
  }
});
4

Join a Meeting

await client.meetings.join({
  personaId: cfo.id,
  platform: 'zoom',
  meetingUrl: 'https://zoom.us/j/123456789',
  mode: 'voice' // or 'text', 'video'
});

API Reference

RESTful API with full OpenAPI specification. Base URL: https://api.agentlify.org/v1

POST
/personas

Create a new AI persona

GET
/personas/{id}

Retrieve persona details

POST
/meetings/join

Join persona to meeting

POST
/companies

Create organizational entity

View full API reference