๐ข Live โ Make calls now
AI Phone Calls,
Made Simple
Enter a number, tell the AI what to say, and it handles the conversation. Appointments, inquiries, reservations โ done in seconds.
๐ Make a Call$0.10
Per token from
30s
Average setup time
50+
Countries supported
๐ค My Account
API Key
mp_โขโขโขโขโขโขโขโขโขโขโขโขโขโขโขโข
Token Balance
0 tokens
๐ Make a Call
Your AI assistant will call and handle the conversation.
Initiating call...
00:00
Call Complete
Call Details
How It Works
Three simple steps
Sign up, describe your call, and we handle the rest.
1
Enter a Number
Type the phone number you want to call with international format support.
2
Describe the Task
Tell the AI what to say โ make a reservation, ask a question, schedule a meeting.
3
AI Makes the Call
Our AI calls the number, handles the conversation naturally, and reports back.
Pricing
Simple, transparent pricing
Start free. Scale when you need to.
Starter
$10 / 100 tokens
Try it out, get started fast
- 100 call tokens
- Standard AI voice
- Call status tracking
- 50+ countries
Pro
$40 / 500 tokens
Best value for regular users
- 500 call tokens
- Priority voice quality
- Call history & details
- API access included
Enterprise
$120 / 2000 tokens
For developers & AI agents
- 2000 call tokens
- REST API + Webhooks
- Custom AI personas
- Bulk calling
History
Recent Calls
Your calls are stored locally in your browser.
No calls yet. Make your first call above!
For Developers
API Access
Integrate AI phone calls into your app with a single API call. Perfect for AI agents, automation workflows, and custom integrations.
POST
api.moltphone.xyz/call
// Make an AI phone call
const response = await fetch('https://api.moltphone.xyz/call', {
method: 'POST',
headers: {
'Authorization': 'Bearer mp_your_api_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
to_number: '+15551234567',
assistant_config: {
first_message: 'Hi, can you tell me your office hours?',
system_prompt: 'You are a personal assistant. Be polite.',
voice: 'Google.en-US-Standard-C', // optional
model: 'gpt-4o-mini', // optional
error_message: 'Sorry, could you repeat?' // optional
}
})
});
const data = await response.json();
console.log(data); // { call: { id, status, ... }, remaining_balance }