Get traffic data about a domain name or an URL.
access_token required | string Example: access_token=API_KEY Your API_KEY |
url required | string Example: url=google.com Domain name (FQDN) or some URL |
{- "url": "google.com",
- "result": {
- "monthly_visitors": 15000000000
}, - "credits": 99999
}
Get a batch of traffic data about domain names and URLs.
Use this endpoint to simultaneously request up to 250 domains.
For each element in the "urls" array a result is returned, with a possible error code, in the "results" array.
access_token | string |
urls | Array of strings <= 250 items Array of domains and URLs |
{- "access_token": "API_KEY",
- "urls": [
- "google.com"
]
}
{- "credits": 99999,
- "results": [
- {
- "url": "google.com",
- "monthly_visitors": 15000000000
}
]
}