Related Keywords

Find keywords related to your seed terms with volume and competition data. Uses Google Ads data for accurate volume numbers in your target location.

When to use this

You have a few keywords and want to expand your list with related terms. Give it "personal injury lawyer" and it finds related searches like "truck accident attorney" and "slip and fall lawyer" — with data on how popular each one is.

POST/v1/keywords/related
Cost: 2 credits ($0.01)
Rate Limit: Varies by plan
Response: ~3-6 seconds

Parameters

ParameterTypeRequiredDescription
keywordsstring[]YesSeed keywords (max 20)
locationstringYesCity and state (e.g. "Houston, Texas, United States")
limitintegerNoMax results. Default: 50, max: 1000

Example Request

curl -X POST https://api.localseodata.com/v1/keywords/related \
  -H "Authorization: Bearer sk_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "keywords": ["personal injury lawyer", "car accident attorney"],
    "location": "Houston, Texas, United States",
    "limit": 20
  }'

Example Response

JSON
{
  "status": "success",
  "credits_used": 2,
  "data": {
    "keywords": [
      {
        "keyword": "personal injury attorney Houston",
        "search_volume": 590,
        "cpc": 185.00,
        "competition": 0.95
      },
      {
        "keyword": "truck accident lawyer Houston",
        "search_volume": 320,
        "cpc": 210.00,
        "competition": 0.91
      }
    ]
  }
}

Response Fields

FieldTypeDescription
keywordstringRelated keyword
search_volumeintegerMonthly search volume for location
cpcfloatAverage cost-per-click
competitionfloatCompetition index (0-1)

Notes

  • Provide multiple seed keywords to get broader results.
  • CPC above $50 indicates high commercial intent — these are valuable keywords.