Everything you need to build, deploy, and scale your virtual workforce
Get up and running in 5 minutes
Complete API documentation
View source code and examples
npm install @one-many/sdk
# or
pip install one-many-sdkimport { OneMany } from '@one-many/sdk';
const client = new OneMany({
apiKey: process.env.ONE_MANY_API_KEY
});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']
}
});await client.meetings.join({
personaId: cfo.id,
platform: 'zoom',
meetingUrl: 'https://zoom.us/j/123456789',
mode: 'voice' // or 'text', 'video'
});RESTful API with full OpenAPI specification. Base URL: https://api.agentlify.org/v1
/personasCreate a new AI persona
/personas/{id}Retrieve persona details
/meetings/joinJoin persona to meeting
/companiesCreate organizational entity