API Documentation
Integrate your automation data with custom applications and third-party tools
Quick Links
Authentication
All API requests require authentication using your API key. Include it in the Authorization header:
Authorization: Bearer YOUR_API_KEY
API Endpoints
GET
/api/callsRetrieve call data from MyAI Front Desk
Parameters:
timeRangestatuslimit
GET
/api/leadsGet lead information from GoHighLevel
Parameters:
stagesourcedateRange
GET
/api/campaignsFetch advertising campaign data from WinningAds
Parameters:
statusplatformbudget
POST
/api/webhooks/leadReceive new lead notifications
Parameters:
leadDatasourcetimestamp
Webhooks
Set up webhooks to receive real-time notifications when events occur in your automation system.
New call received
Lead captured
Appointment booked
Code Examples
JavaScript
fetch('https://api.autobizpro.com/api/calls', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => console.log(data));Python
import requests
headers = {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
response = requests.get(
'https://api.autobizpro.com/api/calls',
headers=headers
)
data = response.json()Need API Access?
Contact our team to get your API credentials and start integrating.