seo_keyword_difficulty
Analyze keyword difficulty for SEO strategies using the ReviewWebsite API. Input a keyword and optional country code to evaluate competition and optimize search rankings.
Instructions
Get keyword difficulty for a keyword using ReviewWeb.site API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Your ReviewWebsite API key | |
country | No | Country code (default: us) | |
keyword | Yes | The keyword to check difficulty for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"api_key": {
"description": "Your ReviewWebsite API key",
"type": "string"
},
"country": {
"description": "Country code (default: us)",
"type": "string"
},
"keyword": {
"description": "The keyword to check difficulty for",
"type": "string"
}
},
"required": [
"keyword"
],
"type": "object"
}