get_domain_ranking
Retrieve domain ranking for a specific keyword across search engines, providing insights into SEO performance by analyzing SERP data for targeted keywords and domains.
Instructions
Get domain ranking for a given keyword
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | No | The country to search from. Default: us | us |
domain | Yes | The domain to search | |
keyword | Yes | The keyword to search | |
pages_number | No | The number of pages to search (1-30). Default: 10 | |
search_engine | No | The search engine to use (google, bing, yahoo, duckduckgo). Default: google |
Input Schema (JSON Schema)
{
"properties": {
"country": {
"default": "us",
"description": "The country to search from. Default: us",
"type": "string"
},
"domain": {
"description": "The domain to search",
"type": "string"
},
"keyword": {
"description": "The keyword to search",
"type": "string"
},
"pages_number": {
"default": 10,
"description": "The number of pages to search (1-30). Default: 10",
"maximum": 30,
"minimum": 1,
"type": "integer"
},
"search_engine": {
"default": "google",
"description": "The search engine to use (google, bing, yahoo, duckduckgo). Default: google",
"type": "string"
}
},
"required": [
"keyword",
"domain"
],
"type": "object"
}