Loading...
Integrate UseAI Support into your applications with our REST API. All endpoints return JSON and require authentication.
https://api.useaisupport.com/api/v1All API requests require an API key passed in the Authorization header
Authorization: Bearer YOUR_API_KEYGenerate API keys from your Dashboard Settings. Keep your API keys secure and never expose them in client-side code.
Secure your API requests
/api/v1/auth/tokenManage and discover leads
/api/v1/leads/api/v1/leads/api/v1/leads/:id/api/v1/leads/:id/api/v1/leads/:id/api/v1/leads/discover/api/v1/leads/:id/enrich/api/v1/leads/:id/queryCustom data tables
/api/v1/tables/api/v1/tables/api/v1/tables/:id/api/v1/tables/:id/api/v1/tables/:id/api/v1/tables/:id/rows/api/v1/tables/:id/rows/api/v1/tables/:id/importKnowledge base documents
/api/v1/documents/api/v1/documents/api/v1/documents/:id/api/v1/documents/:id/api/v1/queryReal-time event notifications
/api/v1/webhooks/api/v1/webhooks/api/v1/webhooks/:idRequest
curl -X POST https://api.useaisupport.com/api/v1/leads/discover \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "gyms",
"location": "Austin, TX",
"limit": 20,
"autoEnrich": true
}'Response
{
"success": true,
"data": {
"discovered": 20,
"new": 15,
"existing": 5,
"leads": [
{
"id": "lead_abc123",
"companyName": "Austin Fitness Club",
"status": "NEW",
"isNew": true
}
]
}
}Official Node.js SDK
npm install @useaisupport/sdkOfficial Python SDK
pip install useaisupportUse with any language
Contact our developer support team for integration help.