Call2Me
Python SDK

Python SDK for voice AI

Install in one line, create agents, place calls, manage knowledge bases β€” all from Python.

pip install call2me
example.py
from call2me import Call2Me

client = Call2Me(api_key="sk_call2me_...")

# Create an agent
agent = client.agents.create(
    agent_name="Sales Agent",
    voice_id="elevenlabs-selin",
    language="tr-TR",
    system_prompt="You are a sales agent."
)

# List all calls
calls = client.calls.list()
for call in calls:
    print(f"{call['call_id']} - {call['call_status']}")

# Check balance
balance = client.wallet.balance()
print(f"Balance: ${balance['balance_usd']}")

Start Building

$10 free credits. No credit card required.