Compare organic ranking difficulty for up to 1,000 keywords in one market, returning each available keyword and its 0–100 score through normalized records.

Keyword Difficulty API

Up to 1,000 keywords
0–100 difficulty score
Market-specific comparison
0.1 credits / keyword
Ready
Ready

Enter parameters and send a request. The task status and normalized results will appear here.

README

Keyword Difficulty

Keyword difficulty scores express the estimated relative competition for ranking organically on a search term, with higher values indicating greater difficulty. These keyword-level signals support prioritization, research-group segmentation, and comparison across a prepared term list.

Features

  • Batch keyword inputEvaluate from 1 to 1,000 non-empty keywords in one task while applying the same selected market and language context to the batch.
  • Normalized difficulty metricReturn each available keyword with metrics.keyword_difficulty, normally expressed on a 0–100 scale for direct comparison.
  • Complete source contextPreserve the complete returned row in extra so clients can inspect additional source fields without treating them as a stable normalized schema.

Parameters

ParametersRequiredDescription
keywordsRequiredRequired list of 1 to 1,000 non-empty keywords, with a maximum of 80 characters per item.
location_codeOptionalPositive numeric search-market code. The Playground defaults to 2840 for the United States.
language_codeOptionalSearch-language code applied to the batch. The Playground defaults to en.

How to Use

Submit a bounded keyword list with code-based market settings, then read the available normalized scores from the completed asynchronous task.

  1. Prepare 1 to 1,000 non-empty keywords, each no longer than 80 characters.
  2. POST keywords with location_code and language_code to /v1/seo/keyword-difficulty, then save the returned task_id.
  3. Poll /v1/tasks/{task_id} until the task succeeds or returns a failure.
  4. Read data.results.items, then follow next_cursor while has_more is true.
curl -X POST "https://api.socq.ai/v1/seo/keyword-difficulty" \
  -H "Authorization: Bearer $SOCQ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keywords":["keyword research","seo analytics"],"location_code":2840,"language_code":"en"}'

# Poll GET /v1/tasks/{task_id}
# Read data.results.items and follow next_cursor while has_more is true

Best Use Cases

  • Keyword list prioritization: Compare metrics.keyword_difficulty across a prepared term set to add a competition signal to editorial or research triage.
  • Difficulty-band segmentation: Group returned scores into internally defined ranges to organize lower- and higher-difficulty keyword research queues.
  • Market comparison: Run the same keyword list with controlled location_code and language_code values to compare estimated difficulty across search contexts.

Pro Tips

  • Deduplicate keywords before submission so repeated terms do not consume repeated input-based charges.
  • Keep location_code and language_code unchanged when comparing scores within one research set.
  • Omit results_limit because this batch is controlled by the keywords array rather than a returned-result limit.
  • Match results by keyword instead of array position because unavailable terms can be omitted from the returned records.
  • Distinguish a numeric score of 0 from an absent keyword_difficulty value when building score bands.

Use these APIs when you need a different type of public SEO data.

  • Keyword Overview APIEnrich a submitted keyword batch with available demand, paid competition, difficulty, monthly-search, and intent context.
  • Keyword Search Volume APIMeasure known keywords with available search volume, CPC, paid competition, and monthly search history.
  • Keyword Suggestions APIExpand one seed query into matching long-tail terms with available demand measurements, monthly history, intent context, and complete source rows.
  • Related Keywords APIFollow related-search paths from one seed query with depth controls, available keyword measurements, intent context, and complete source rows.

Keyword Difficulty APIFAQ