This endpoint returns the SERP, search, and your ranking data of the related keywords for a specified keyword (topic).
Request Code Samples
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}}&search={{search}}' \
--header 'Accept: application/json'
Responses
application/json [
    {
        "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 2025-10-23 13:35:01