API Documentation
247 Sales API Documentation
Integrate 247 Sales with your existing tools and workflows using our REST API.
Base URL
All API requests should be made to the following base URL:
https://api.247sales.ai/api/v1Authentication
Authenticate requests by including your API key in the Authorization header using the Bearer scheme.
Header Format
Authorization: Bearer YOUR_API_KEY
API keys can be created and managed from your API Keys settings page. API access requires a Pro plan or higher.
Rate Limits
API requests are rate-limited based on your subscription tier. Rate limit headers are included in every response.
| Tier | Requests / Day |
|---|---|
| Pro | 5,000 |
| Business | 10,000 |
| Enterprise | 100,000 |
When rate limited, the API returns a 429 status code with a Retry-After header indicating how many seconds to wait before retrying.
Error Handling
All errors return a consistent JSON structure with a success: false field and an error message.
{
"success": false,
"error": "Lead not found",
"status": 404
}| Status | Description |
|---|---|
| 400 | Bad request -- invalid parameters or missing required fields |
| 401 | Unauthorized -- invalid or missing API key |
| 403 | Forbidden -- insufficient tier or permissions |
| 404 | Not found -- resource does not exist |
| 429 | Rate limited -- too many requests, check Retry-After header |
| 500 | Internal server error -- retry or contact support |
Endpoint Reference
Need help?
If you have questions about the API or need additional endpoints, reach out to our support team at api-support@247sales.ai or visit the API Keys page to manage your credentials.