Function Details

Historical SERP Analysis

Analyze how Google search results have changed over time for a specific keyword. This node provides historical SERP (Search Engine Results Page) data between two specified dates.

Inputs

  • Target Keyword: The keyword you want to analyze historical data for

  • Language: The language of the search results

  • Country: The country to get search results from

  • Start Date: The beginning of the analysis period (must be in YYYY-MM-DD format, e.g., "2024-01-01")

  • End Date: The end of the analysis period (must be in YYYY-MM-DD format, e.g., "2024-03-15")

Outputs

This function outputs a table with the following columns for each organic search result: - position: The ranking position of the result - domain: The website domain - title: The page title - url: The full URL of the result - description: The meta description or snippet shown in search results

[
    {
        "position": 1,
        "domain": "example.com",
        "title": "Example Page Title",
        "url": "https://example.com/page",
        "description": "This is an example meta description that appears in search results..."
    },
    {
        "position": 2,
        "domain": "another-site.com",
        "title": "Another Page Title",
        "url": "https://another-site.com/page",
        "description": "Another example description from search results..."
    }
]

position

domain

title

url

description

1

example.com

Example Page Title

https://example.com/page

This is an example meta description...

2

another-site.com

Another Page Title

https://another-site.com/page

Another example description...