get_keywords_match
Analyze and filter keyword matches based on volume, CPC, competition, and other metrics to identify relevant search terms for SEO strategies.
Instructions
Obtenir la correspondance des mots-clés.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
allintitle_max | No | ||
allintitle_min | No | ||
competition_max | No | ||
competition_min | No | ||
cpc_max | No | ||
cpc_min | No | ||
exact_match | No | ||
exclude | No | ||
include | No | ||
keyword | Yes | Seed keyword | |
kgr_max | No | ||
kgr_min | No | ||
kvi_keep_na | No | ||
kvi_max | No | ||
kvi_min | No | ||
lineCount | No | Max number of returned results. | |
order | No | Whether the results are sorted in ascending or descending order. | |
order_by | No | Field used for sorting results. Default sorts by descending volume. | |
volume_max | No | ||
volume_min | No | ||
word_count_max | No | ||
word_count_min | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"allintitle_max": {
"type": "number"
},
"allintitle_min": {
"type": "number"
},
"competition_max": {
"type": "number"
},
"competition_min": {
"type": "number"
},
"cpc_max": {
"type": "number"
},
"cpc_min": {
"type": "number"
},
"exact_match": {
"type": "boolean"
},
"exclude": {
"type": "string"
},
"include": {
"type": "string"
},
"keyword": {
"description": "Seed keyword",
"type": "string"
},
"kgr_max": {
"type": "number"
},
"kgr_min": {
"type": "number"
},
"kvi_keep_na": {
"type": "boolean"
},
"kvi_max": {
"type": "number"
},
"kvi_min": {
"type": "number"
},
"lineCount": {
"description": "Max number of returned results.",
"type": "number"
},
"order": {
"description": "Whether the results are sorted in ascending or descending order.",
"type": "string"
},
"order_by": {
"description": "Field used for sorting results. Default sorts by descending volume.",
"type": "string"
},
"volume_max": {
"type": "number"
},
"volume_min": {
"type": "number"
},
"word_count_max": {
"type": "number"
},
"word_count_min": {
"type": "number"
}
},
"required": [
"keyword"
],
"type": "object"
}