get_traffic
Retrieve estimated search traffic data for any domain or URL, with options to filter by country and mode, using this tool for SEO analysis.
Instructions
Check the estimated search traffic for any website.
Args:
domain_or_url (str): The domain or URL to query
country (str): The country to query, default is "None"
mode (["subdomains", "exact"]): The mode to use for the query
Returns:
Traffic data for the specified domain or URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | No | None | |
domain_or_url | Yes | ||
mode | No | subdomains |
Input Schema (JSON Schema)
{
"properties": {
"country": {
"default": "None",
"title": "Country",
"type": "string"
},
"domain_or_url": {
"title": "Domain Or Url",
"type": "string"
},
"mode": {
"default": "subdomains",
"enum": [
"subdomains",
"exact"
],
"title": "Mode",
"type": "string"
}
},
"required": [
"domain_or_url"
],
"title": "get_trafficArguments",
"type": "object"
}