Enter a number, tell the AI what to say, and it handles the conversation. Appointments, inquiries, reservations โ done in seconds.
๐ Make a CallYour AI assistant will call and handle the conversation.
Type the phone number you want to call with international format support.
Tell the AI what to say โ make a reservation, ask a question, schedule a meeting.
Our AI calls the number, handles the conversation naturally, and reports back.
Integrate AI phone calls into your app with a single API call. Perfect for AI agents, automation workflows, and custom integrations.
// Make an AI phone call
const response = await fetch('https://api.moltphone.xyz/call/webapp', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
phoneNumber: '+15551234567',
task: 'Call and ask about office hours',
agentName: 'My Assistant'
})
});
const data = await response.json();
console.log(data); // { callId, status, ... }