labs_google_search_intent
Analyze search keywords to determine user intent for SEO strategy, providing insights into informational, commercial, or transactional search behavior patterns.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keywords | Yes | Keywords to determine search intent | |
| language_code | No | The language code for the search | |
| location_code | No | The location code for the search |
Input Schema (JSON Schema)
{
"properties": {
"keywords": {
"description": "Keywords to determine search intent",
"items": {
"type": "string"
},
"type": "array"
},
"language_code": {
"description": "The language code for the search",
"type": "string"
},
"location_code": {
"description": "The location code for the search",
"type": "number"
}
},
"required": [
"keywords"
],
"type": "object"
}