Domain Traffic API: Rank and Visits From a URL
A domain traffic API returns rank and visit estimates from a website URL. On Klazify that is POST https://www.klazify.com/api/domain_traffic_intelligence with Bearer auth and form or JSON url=https://www.cbsnews.com. Official docs sample: global_rank 765, US country rank 196, News_and_Media category rank 18. Domain stamp on that envelope is 2022-12-19; the monthly_visits keys in the playground fixture are 2025-10-01 … 2025-12-01.
Starter is $39.99/mo (500 successful calls) with a 7-day trial. Failed or unreachable URLs are not billed. MCP tools cover categorize / company / logo — not this traffic path. Docs: klazify.com/api-docs.
Use cases
- Lead scoring. Sort a list by
global_rank(lower is larger). - Traffic mix. Official fixture: direct
0.55, search0.36, US share0.86. - Engagement gate. Bounce rate
0.61, pages/visit1.66, time on site67.7seconds in the same sample.
Request: official CBS News URL
curl 'https://www.klazify.com/api/domain_traffic_intelligence' -X POST \
-H 'Accept: application/json' \
-H 'Authorization: Bearer YOUR_API_KEY' \
--data $'url=https://www.cbsnews.com'
Response: official playground sample
{
"domain": {
"domain_url": "https://cbsnews.com",
"updated_at": "2022-12-19T15:52:42.000000Z"
},
"success": true,
"traffic_intelligence": {
"global_rank": 765,
"country_rank": { "country_code": "US", "rank": 196 },
"category_rank": { "category": "News_and_Media", "rank": "18" },
"monthly_visits": {
"2025-10-01": 93188768,
"2025-11-01": 91195650,
"2025-12-01": 78634549
},
"engagement": {
"bounce_rate": "0.6069836989927349",
"pages_per_visit": "1.6647468565441708",
"time_on_site_seconds": "67.71143611777492"
},
"traffic_sources": {
"direct": 0.5542159835689381,
"search": 0.35791926417859604,
"referrals": 0.05083139315683709,
"social": 0.03428147042028826,
"mail": 0.0007136966366702728,
"paid": 0.0020381920386702518
},
"top_countries": [
{ "country_code": "US", "share": 0.8605050526541407 },
{ "country_code": "CA", "share": 0.024558898139791202 }
],
"traffic_category": "news_and_media"
}
}
The older quick-start card on the same docs page shows empty monthly_visits / engagement objects. Copy the curl for a live print — ranks move.
Go live
1. Register — 7-day trial.
2. Copy the Bearer key.
3. POST /api/domain_traffic_intelligence.
4. Sort on global_rank and persist monthly_visits.
Ready to use Klazify?
Start classifying websites, enriching company data, and exploring web intelligence.
Get Started Free