Spam Meter API
Welcome to the official API for Spam Meter — the intelligent spam detection and AI message
analysis tool by AryCodes.
🚀 Public API Coming Soon!
The API will soon be available for developers and creators to integrate Spam Meter into their apps, bots, or
web platforms. Stay tuned for API keys and full developer documentation.
POST /predict
Analyzes a given message and returns the spam confidence score.
Example Request
{
"message": "Congratulations! You won a free ticket."
}
Example Response
{
"prediction_label": "Spam",
"probabilities": {
"spam_percentage": 94.3,
"ham_percentage": 5.7
}
}
Try It
POST /suggest
Generates AI-based reply suggestions for a given message.
Example Request
{
"message": "Hey, are we meeting tomorrow?"
}
Example Response
{
"suggestions": [
"Sure, what time suits you best?",
"Let's finalize the venue.",
"I'm available after 5 PM."
]
}
Try It
Note: These endpoints are currently for internal use only.
The public API access will open soon — you’ll be able to register and use your own API key.