tools/integrations/keywords-everywhere.md
Keyword research API for search volume, CPC, competition, related keywords, and traffic data.
| Integration | Available | Notes |
|---|---|---|
| API | ✓ | REST API for keyword data, related keywords, traffic |
| MCP | - | Community MCP server available |
| CLI | ✓ | keywords-everywhere.js |
| SDK | - | API-only |
Authorization: Bearer {api_key}POST https://api.keywordseverywhere.com/v1/get_keyword_data
Authorization: Bearer {api_key}
{
"country": "us",
"currency": "USD",
"dataSource": "gkp",
"kw": ["email marketing", "marketing automation", "crm software"]
}
POST https://api.keywordseverywhere.com/v1/get_related_keywords
Authorization: Bearer {api_key}
{
"country": "us",
"currency": "USD",
"dataSource": "gkp",
"kw": ["email marketing"]
}
POST https://api.keywordseverywhere.com/v1/get_pasf_keywords
Authorization: Bearer {api_key}
{
"country": "us",
"currency": "USD",
"dataSource": "gkp",
"kw": ["email marketing"]
}
POST https://api.keywordseverywhere.com/v1/get_domain_keywords
Authorization: Bearer {api_key}
{
"country": "us",
"currency": "USD",
"domain": "example.com"
}
POST https://api.keywordseverywhere.com/v1/get_url_keywords
Authorization: Bearer {api_key}
{
"country": "us",
"currency": "USD",
"url": "https://example.com/page"
}
POST https://api.keywordseverywhere.com/v1/get_domain_traffic
Authorization: Bearer {api_key}
{
"country": "us",
"domain": "example.com"
}
POST https://api.keywordseverywhere.com/v1/get_url_traffic
Authorization: Bearer {api_key}
{
"country": "us",
"url": "https://example.com/page"
}
POST https://api.keywordseverywhere.com/v1/get_domain_backlinks
Authorization: Bearer {api_key}
{
"domain": "example.com"
}
POST https://api.keywordseverywhere.com/v1/get_page_backlinks
Authorization: Bearer {api_key}
{
"url": "https://example.com/page"
}
GET https://api.keywordseverywhere.com/v1/get_credits
Authorization: Bearer {api_key}
GET https://api.keywordseverywhere.com/v1/get_countries
Authorization: Bearer {api_key}
GET https://api.keywordseverywhere.com/v1/get_currencies
Authorization: Bearer {api_key}
vol - Monthly search volumecpc.value - Cost per clickcompetition - Competition scoretrend - 12-month trend dataestimated_traffic - Estimated monthly traffickeywords_count - Number of ranking keywordscountry - Country code (us, uk, de, fr, etc.)currency - Currency code (USD, GBP, EUR, etc.)dataSource - Data source, default gkp (Google Keyword Planner)kw - Array of keywords (max 100 per request)