Get insights into the quality of traffic visiting your short URL, including bot detection and traffic behavior analysis.
Parameters
The unique ID or short code of the URL.
Request Examples
curl -X GET "https://jmpy.me/api/v1/analytics/traffic-quality/google-redirect" \
-H "Authorization: Bearer YOUR_API_KEY"
const response = await fetch('https://jmpy.me/api/v1/analytics/traffic-quality/google-redirect', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
});
const data = await response.json();
console.log(data);
import requests
headers = {
'Authorization': 'Bearer YOUR_API_KEY'
}
response = requests.get('https://jmpy.me/api/v1/analytics/traffic-quality/google-redirect', headers=headers)
print(response.json())
Response Examples
{
"human_clicks": 1450,
"bot_clicks": 50,
"bot_percentage": 3.33,
"suspicious_clicks": 0,
"traffic_health": "good"
}
Response Fields
Count of clicks identified as real human users.
Count of clicks identified as automated bots, crawlers, or scrapers.
Percentage of total traffic identified as bots.
Count of clicks flagged as suspicious or potentially fraudulent.
Overall assessment of traffic quality (good, fair, poor).
Use Cases
Monitor bot_percentage and suspicious_clicks to ensure you are not paying for fraudulent traffic in your paid campaigns.
Use these metrics to understand the true reach of your content by focusing on human_clicks rather than raw total clicks.