What is Tropo.com?
Tropo is cloud-based telephony.
Using our simple API you can quickly create and deploy powerful telephony applications in Groovy, JavaScript, PHP, Python, and Ruby.
Tropo is powered by Voxeo - the largest and most reliable hosted telephony platform in the world.
Tropo is currently in BETA and will always be absolutely free for development use.
After the BETA, production use will start at $0.03 per minute.
If you encounter any problems whatsoever during testing, please contact us via the help menu above.
Thanks and happy Tropoing!
Sample Code
Here's a simple JavaScript example that shows you how to,
well, you know.
answer();
say("Hello, world!");
hangup();
The following JavaScript example demonstrates how to ask a caller for input:
answer();
result = ask("For sales, press 1. For support, press 2.",
{choices:"1, 2", repeat:3});
if (result.name == 'choice') {
if (result.value == "1")
say("sales is not available right now.");
if (result.value == "2")
say("support is currently on the other line.");
}
hangup();
View our documentation for many more samples in each of the supported languages.