seo_traffic
Analyze website traffic for any domain or URL using ReviewWeb.site API. Specify mode (subdomains or exact) and country code for precise insights on visitor data.
Instructions
Check traffic for a domain or URL using ReviewWeb.site API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Your ReviewWebsite API key | |
country | No | Country code (default: None) | |
domainOrUrl | Yes | The domain or URL to check traffic for | |
mode | No | Mode to use (default: subdomains) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"api_key": {
"description": "Your ReviewWebsite API key",
"type": "string"
},
"country": {
"description": "Country code (default: None)",
"type": "string"
},
"domainOrUrl": {
"description": "The domain or URL to check traffic for",
"type": "string"
},
"mode": {
"description": "Mode to use (default: subdomains)",
"enum": [
"subdomains",
"exact"
],
"type": "string"
}
},
"required": [
"domainOrUrl"
],
"type": "object"
}