Overview
This API allows businesses to upload and manage contacts, companies, and engagement data in Conversion programmatically. All endpoints require proper authentication and follow RESTful conventions.
Base URL
https://pub-api.conversion.ai/apiAuthentication
All requests must include your API key in the header:
X-API-Key: YOUR_API_KEYResponse Format
All API responses follow this standard format:
Success Response:
Standard JSON format.
Error Response:
{
  "message": "User is not found."
}HTTP Response Codes
200
OK
Success
400
Bad Request
Your request was invalid
401
Unauthorized
Invalid or missing API key
403
Forbidden
Your API key does not have permissions for the requested resource
404
Not Found
The requested resource does not exist
429
Too Many Requests
You've hit our API rate limits
500
Server Error
Something went wrong on Conversion's end
Best Practices
Batch Operations: Use batch endpoints when uploading multiple records to reduce API calls
Error Handling: Always check the response code is
200before processing response dataValidation: Validate email formats and required fields before sending requests
Monitoring: Monitor API response times and error rates for optimal performance
Last updated