Loading call details...
๐ŸŸข 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.

โšก You've used your free calls. Sign up for more!

Create Free Account โ†’
โšก 0 tokens available
This is the opening line the AI will say when the call connects.
Instructions that guide the AI's behavior during the call. Pick a preset above or write your own.
The AI will introduce itself with this name.
What the AI says when it can't understand the other party.
๐Ÿ“ž
Initiating call...
00:00
โœ…
Call Complete

Call Details

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.

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
Enterprise
$120 / 2000 tokens
For developers & AI agents
  • 2000 call tokens
  • REST API + Webhooks
  • Custom AI personas
  • Bulk calling
Recent Calls
Your calls are stored locally in your browser.
๐Ÿ“ž
No calls yet. Make your first call above!
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 }