get_keywords_suggestions
Generate relevant keyword suggestions for SEO and content optimization by analyzing a URL or provided keywords. Optimize search performance and strategy with targeted data.
Instructions
Get keyword suggestions based on a url or a list of keywords
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | No | The country code to search for | |
keywords | No | The keywords to search (optional if url provided) | |
url | No | The url to search (optional if keywords provided) |
Input Schema (JSON Schema)
{
"properties": {
"country": {
"description": "The country code to search for",
"type": "string"
},
"keywords": {
"description": "The keywords to search (optional if url provided)",
"items": {
"type": "string"
},
"type": "array"
},
"url": {
"description": "The url to search (optional if keywords provided)",
"type": "string"
}
},
"type": "object"
}