YepAPI
Keywords

Related Keywords

Discover semantically related keywords and variations with search volume, CPC, and difficulty.

POST/v1/seo/keywords/related
$0.03/call

Usage

const res = await fetch('https://api.yepapi.com/v1/seo/keywords/related', {
  method: 'POST',
  headers: {
    'x-api-key': 'YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ keyword: 'email marketing', limit: 50 }),
});
const { data } = await res.json();
console.log(data);
curl -X POST https://api.yepapi.com/v1/seo/keywords/related \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword": "email marketing", "limit": 50}'

Request Body

ParameterTypeRequiredDescriptionDefault
keywordstringYesSeed keyword to find related terms for (e.g., "email marketing")
limitnumberNoMaximum number of related keywords to return50
location_codenumberNoTarget country code (e.g., 2840 for US). See Location Codes.2840
languagestringNoISO language code (e.g., en, es)"en"

Response

{
  "ok": true,
  "data": {
    "seed": "email marketing",
    "keywords": [
      {
        "keyword": "email marketing",
        "volume": 18100,
        "cpc": 46.41,
        "difficulty": 73,
        "competition": 0.17,
        "competitionLevel": "LOW",
        "intent": "informational",
        "avgBacklinks": 5295.1,
        "avgReferringDomains": 708.5,
        "serpFeatures": [
          "images",
          "organic",
          "peopleAlsoAsk",
          "video",
          "perspectives",
          "relatedSearches"
        ],
        "totalResults": 2370000000,
        "trend": [
          { "month": "2026-03", "volume": 27100 },
          { "month": "2026-02", "volume": 14800 },
          { "month": "2026-01", "volume": 12100 }
        ]
      },
      {
        "keyword": "email marketing jobs",
        "volume": 2900,
        "cpc": 3.95,
        "difficulty": 7,
        "competition": 0.12,
        "competitionLevel": "LOW",
        "intent": "informational",
        "avgBacklinks": 177.4,
        "avgReferringDomains": 6.7,
        "serpFeatures": [
          "jobs",
          "organic",
          "peopleAlsoAsk",
          "relatedSearches"
        ],
        "totalResults": 1840000000,
        "trend": [
          { "month": "2026-03", "volume": 2400 },
          { "month": "2026-02", "volume": 2400 },
          { "month": "2026-01", "volume": 2900 }
        ]
      }
    ]
  }
}

Response Fields

FieldTypeDescription
okbooleanWhether the request succeeded
data.seedstringThe seed keyword used to find related terms
data.keywordsobject[]Array of related keyword results
data.keywords[].keywordstringThe related keyword
data.keywords[].volumenumberAverage monthly search volume
data.keywords[].cpcnumberCost per click in USD
data.keywords[].difficultynumberSEO difficulty score (0-100)
data.keywords[].competitionnumberPPC competition index (0-1)
data.keywords[].competitionLevelstringCompetition category (LOW, MEDIUM, HIGH, or unknown)
data.keywords[].intentstringSearch intent (informational, commercial, navigational, transactional, or unknown)
data.keywords[].avgBacklinksnumberAverage number of backlinks for top-ranking pages
data.keywords[].avgReferringDomainsnumberAverage number of referring domains for top-ranking pages
data.keywords[].serpFeaturesstring[]SERP features present for this keyword (e.g., images, video, jobs, peopleAlsoAsk)
data.keywords[].totalResultsnumberTotal number of search results
data.keywords[].trendobject[]Monthly search volume trend data
data.keywords[].trend[].monthstringMonth in YYYY-MM format
data.keywords[].trend[].volumenumberSearch volume for that month
Under the Hood

Under the hood, this queries our SEO data engine for semantically related terms. These are terms searchers also look for, not just string variations of the seed keyword.

On this page