This endpoint returns the overall aggregated search, SERP, and Visibility data for all the keywords of a specified list in the Keyword Vault.
Request Code Samples
curl --location -g --request GET 'https://apigw.seomonitor.com/v3/keyword-vault/v3.0/get-overview-data?campaign_id={{campaign_id}}&list={{list}}' \
--header 'Accept: application/json'
Responses
application/json {
    "keyword_count": "<integer>",
    "search_data": {
        "search_volume": "<integer>",
        "year_over_year": "<double>",
        "monthly_searches": {
            "search_volume": "<integer>",
            "month": "<string>",
            "year": "<integer>"
        }
    },
    "serp_data": {
        "percentage_clicks": "<number>",
        "serp_features": {
            "feature": "<string>",
            "position": "<integer>"
        }
    },
    "visibility_data": {
        "visibility": "<double>",
        "trend": "<double>"
    }
}
Modified at 2025-10-23 13:35:01