Welcome to the AISoule Developer API Documentation. The AISoule API is a robust, REST-first interface designed to let you send and receive WhatsApp messages, manage contacts, configure templates, and retrieve conversation analytics using the Official Meta WhatsApp Business API.
GET, POST, DELETE) are utilized for intuitive resource interaction.All REST requests must target the secure primary production endpoint:
https://api.aisoule.com/v1
!IMPORTANT Always enforce secure
httpsconnections. Cleartexthttpendpoints will be rejected automatically.
All error conditions return standard HTTP status codes accompanied by descriptive JSON payloads to simplify troubleshooting:
{
"success": false,
"error": {
"code": "unauthorized",
"message": "The provided Bearer token is invalid or has expired."
}
}
# Send a quick ping to verify your API status
curl -X GET "https://api.aisoule.com/v1/status" \
-H "Authorization: Bearer YOUR_API_KEY"