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-siteCost: 3 credits ($0.015)
Rate Limit: Varies by plan
Response: ~3-8 seconds
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| domain | string | Yes | Competitor domain (e.g. "competitor-plumber.com") |
| location | string | Yes | City and state (e.g. "Denver, Colorado, United States") |
| limit | integer | No | Max 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
| Field | Type | Description |
|---|---|---|
| keyword | string | Keyword the competitor site is associated with |
| search_volume | integer | Monthly search volume for location |
| cpc | float | Average cost-per-click |
| competition | float | Competition 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.