Keywords for Site

Discover keywords that a competitor's website ranks for or is relevant to. Answers 'what keywords does my competitor target?'

When to use this

You want to spy on a competitor's website and see what search terms they're ranking for. Enter their domain and get a list of keywords they target — great for discovering opportunities you haven't thought of.

POST/v1/keywords/for-site
Cost: 3 credits ($0.015)
Rate Limit: Varies by plan
Response: ~3-8 seconds

Parameters

ParameterTypeRequiredDescription
domainstringYesCompetitor domain (e.g. "competitor-plumber.com")
locationstringYesCity and state (e.g. "Denver, Colorado, United States")
limitintegerNoMax results. Default: 50, max: 1000

Example Request

curl -X POST https://api.localseodata.com/v1/keywords/for-site \
  -H "Authorization: Bearer sk_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "domain": "abcplumbing.com",
    "location": "Denver, Colorado, United States",
    "limit": 20
  }'

Example Response

JSON
{
  "status": "success",
  "credits_used": 3,
  "data": {
    "domain": "abcplumbing.com",
    "keywords": [
      {
        "keyword": "plumber denver",
        "search_volume": 1200,
        "cpc": 48.00,
        "competition": 0.85
      },
      {
        "keyword": "drain cleaning denver",
        "search_volume": 390,
        "cpc": 32.00,
        "competition": 0.72
      }
    ]
  }
}

Response Fields

FieldTypeDescription
keywordstringKeyword the competitor site is associated with
search_volumeintegerMonthly search volume for location
cpcfloatAverage cost-per-click
competitionfloatCompetition index (0-1)

Notes

  • Great for discovering keywords you haven't thought of by analyzing competitor sites.
  • Use competitor domains found via /v1/serp/local-pack or /v1/report/competitor-gap.