Send faxes programmatically to any number worldwide.
All formats are automatically converted to fax-compatible format before sending.
https://softwaresphere.ca/tools/SendAndReceiveFaxesTool/api.php
curl -X POST "https://softwaresphere.ca/tools/SendAndReceiveFaxesTool/api.php" \
-F "api_key=YOUR_API_KEY" \
-F "to=+14375375000" \
-F "file=@document.pdf"
const formData = new FormData();
formData.append('api_key', 'YOUR_API_KEY');
formData.append('to', '+14375375000');
formData.append('file', fileInput.files[0]);
fetch('https://softwaresphere.ca/tools/SendAndReceiveFaxesTool/api.php', {
method: 'POST',
body: formData
}).then(r => r.json()).then(console.log);
{
"success": true,
"message": "Fax queued for delivery",
"fax_id": "fax_abc123",
"details": {
"to": "+14375375000",
"pages": 3,
"rate": "us_canada",
"price_per_page": "$0.07",
"total_cost": "$0.21",
"remaining_balance": "$24.79"
}
}
{
"success": false,
"error": "Insufficient funds",
"required": "$0.21",
"balance": "$0.10"
}
Get your API key from your User Profile after logging in.