get_long_tail_keywords
Generate long-tail keywords from a seed keyword to enhance SEO targeting. Specify search intent and quantity for precise results.
Instructions
Generate long-tail keywords for a given keyword
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | The number of long-tail keywords to generate (1-500). Default: 10 | |
keyword | Yes | The seed keyword to generate long-tail keywords from | |
search_intent | No | The search intent (informational, commercial, transactional, navigational). Default: informational | informational |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 10,
"description": "The number of long-tail keywords to generate (1-500). Default: 10",
"maximum": 500,
"minimum": 1,
"type": "integer"
},
"keyword": {
"description": "The seed keyword to generate long-tail keywords from",
"type": "string"
},
"search_intent": {
"default": "informational",
"description": "The search intent (informational, commercial, transactional, navigational). Default: informational",
"type": "string"
}
},
"required": [
"keyword"
],
"type": "object"
}