Get Related Keywords
GET
https://apigw.seomonitor.com/v3/research/v3.0/related-keywordsThis endpoint returns the SERP, search, and your ranking data of the related keywords for a specified keyword (topic).
Request
(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.
(Required) The topic for which you want to return related keywords' data.
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.
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.
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.
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
.
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.
Request samples
Responses
The exact keyword phrase for the returned related keyword.
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.
Parent field containing the data related to Google desktop search volumes.
The average 12-month desktop search volume as provided by Google Ads.
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).
An array of objects containing the search volumes for each of the previous 13 months as provided by Google Ads.
Parent field containing the Google ranking data associated with the keyword.
The date when the latest crawl was performed, in YYYY-MM-DD format.
The position on Google at the latest crawl date refreshed within the past 30 days, for desktop devices.
The difference in positions on Google between the latest rank and the rank identified at the previous crawl, for desktop devices.
The landing page of your website that is currently ranking with the keyword on Google searches performed from desktop devices.
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.
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.
Parent field containing the data for the SERP features present for the keyword on the latest crawl date.
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.
[
{
"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
}
]