labs_google_domain_intersection
Compare domains to identify overlapping keywords in Google search results, enabling competitive SEO analysis and content gap discovery.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domains | Yes | Domains to compare | |
| filters | No | Filters to apply to the results | |
| language_code | No | The language code for the search | |
| limit | No | Maximum number of results to return | |
| location_code | No | The location code for the search | |
| offset | No | Offset for pagination |
Input Schema (JSON Schema)
{
"properties": {
"domains": {
"description": "Domains to compare",
"items": {
"type": "string"
},
"maxItems": 20,
"minItems": 2,
"type": "array"
},
"filters": {
"description": "Filters to apply to the results",
"type": "array"
},
"language_code": {
"description": "The language code for the search",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return",
"type": "number"
},
"location_code": {
"description": "The location code for the search",
"type": "number"
},
"offset": {
"description": "Offset for pagination",
"type": "number"
}
},
"required": [
"domains"
],
"type": "object"
}