SEOmonitor API 3.0
  1. By Topic
SEOmonitor API 3.0
  • Overview
  • Campaigns
    • Get Tracked Campaigns
      GET
  • Rank Tracker
    • Get Keyword Data
      GET
    • Get Keyword AI Overview Data
      GET
    • Get Groups List
      GET
    • Get Keywords Competition Data
      GET
    • Get Top 100 Results
      GET
    • Get Groups Data
      GET
    • Get Daily Keyword Ranks
      GET
    • Get Daily Group Visibility
      GET
    • Add New Keywords
      POST
    • Get Keywords Import Status
      GET
    • Get Daily SERP Feature Presence
      GET
    • Get Ranking Pages
      GET
    • Get Daily Share of Clicks
      GET
  • Organic Traffic
    • Get Daily Traffic Data by Segment
      GET
    • Get Traffic Data by Keywords
      GET
  • Research
    • Keyword Research
      • By Topic
        • Get Related Keywords
          GET
        • Get Topic Overview
          GET
      • By URL/Domain
        • Get URL/Domain Overview
        • Get Ranking Keywords
      • Get Keyword Data
        GET
      • Get Ranking Data
        GET
    • Keyword Vault
      • Get Keyword Data by List
      • Get Overview Data
  • Forecast
    • Get Forecast scenarios
    • Get Forecast scenario Data
    • Get Forecast objective Data
    • Get Forecast keywords
  1. By Topic

Get Related Keywords

GET
https://apigw.seomonitor.com/v3/research/v3.0/related-keywords
This endpoint returns the SERP, search, and your ranking data of the related keywords for a specified keyword (topic).

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Query Params
campaign_id
integer 
required
(Required) This parameter specifies the ID of the campaign for which you want to return data.
Please refer to the Quick Start Guide to learn how to retrieve the IDs of your campaigns.
Example:
{{campaign_id}}
keyword
string 
required
(Required) The topic for which you want to return related keywords' data.
Example:
{{keyword}}
limit
integer 
optional
This parameter determines the maximum number of records to return in a single request.
Maximum Value: 1000 records per request
If you do not specify a limit, the default number of records returned per request will be 100.
Example:
{{limit}}
offset
integer 
optional
This parameter specifies the starting point within the collection of resource results. It's typically used with the limit parameter to implement pagination.
If you do not specify an offset, the API will start from the first record.
Example:
{{offset}}
order_by
string 
optional
This parameter enables you to sort the returned data based on a specified field.
The field names you can use to sort data are:
connection_strength
search_volume
year-over-year
rank
rank_trend
percentage_clicks
If not otherwise specified, the returned data will be sorted by connection_strength by default.
Example:
{{order_by}}
order_direction
string 
optional
This parameter determines the sorting direction of the order_by field. You can sort the data in either ascending (asc) or descending (desc) order.
If you do not specify an order_direction, the default is asc.
Example:
{{order_direction}}
search
string 
optional
The search parameter allows you to filter the results based on a keyword search. The API will return only those records where the keyword matches (fully or partially) the provided search term.
The search parameter is case-insensitive, allowing partial matches irrespective of casing.
Example:
{{search}}
Header Params
Accept
string 
required
Example:
application/json

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://apigw.seomonitor.com/v3/research/v3.0/related-keywords?campaign_id={{campaign_id}}&keyword={{keyword}}&limit={{limit}}&offset={{offset}}&order_by={{order_by}}&order_direction={{order_direction}}' \
--header 'Accept: application/json' \
--header 'Authorization;'

Responses

🟢200Success
application/json
Body
array of:
keyword
string 
optional
The exact keyword phrase for the returned related keyword.
connection_strength
integer 
optional
The strength of the connection between the related keyword returned and the topic specified, in a range from 1 to 5, where 5 is a very strong connection.
search_data
object 
optional
Parent field containing the data related to Google desktop search volumes.
search_volume
integer 
optional
The average 12-month desktop search volume as provided by Google Ads.
year_over_year
number 
optional
A numeric value representing the last month's search volume divided by the search volume of the same month of the previous year. E.g. +49% year-over-year search trend would be represented as 1.49. The returned values will be capped at 10, which represents "newcomers" (keywords that registered very low search volumes in the previous year).
monthly_searches
object 
optional
An array of objects containing the search volumes for each of the previous 13 months as provided by Google Ads.
ranking_data
object 
optional
Parent field containing the Google ranking data associated with the keyword.
updated_on
string 
optional
The date when the latest crawl was performed, in YYYY-MM-DD format.
rank
integer 
optional
The position on Google at the latest crawl date refreshed within the past 30 days, for desktop devices.
trend
integer 
optional
The difference in positions on Google between the latest rank and the rank identified at the previous crawl, for desktop devices.
landing_page
string 
optional
The landing page of your website that is currently ranking with the keyword on Google searches performed from desktop devices.
serp_data
object 
optional
Parent field containing the SERP features data on desktop search results for the keyword recorded on the latest crawl date refreshed within the past 30 days. Please refer to the Quick Start Guide for the complete feature name of each abbreviation.
percentage_clicks
number 
optional
The percentage of searches that end up clicking on organic results, based on the sum of Top 10 positions' CTRs after discounting the searches satisfied by SERP features.
serp_features
object 
optional
Parent field containing the data for the SERP features present for the keyword on the latest crawl date.
tracked_keyword_id
integer 
optional
The unique ID used to identify and reference the keyword in the system. Returned only if the keyword is tracked in the SEOmonitor campaign. It can be stored and used in other endpoints for filtering.
Example
[
  {
    "keyword": "go fresco",
    "connection_strength": 5,
    "search_data": {
      "search_volume": 887,
      "year_over_year": 1.45,
      "monthly_searches": [
        {
          "month": "June",
          "year": 2023,
          "search_volume": 889
        }
      ]
    },
    "ranking_data": {
      "updated_on": "2023-10-01",
      "rank": 45,
      "trend": 3,
      "landing_page": "https://deliveroo.co.uk/restaurants/manchester/sale"
    },
    "serp_data": {
      "percentage_clicks": 0.77,
      "serp_features": [
        {
          "feature": "IMG",
          "position": 4
        }
      ]
    },
    "tracked_keyword_id": 1789784
  }
]
Modified at 2024-11-05 13:58:57
Previous
Get Traffic Data by Keywords
Next
Get Topic Overview
Built with