SERP features

Provides models for SERP information and features.

Represents a standard organic search result (“blue link”).

position

The position of the link amongst all organic results.

Type:

int | None

block_position

The position of the link amongst all SERP features.

Type:

int | None

title

The title of the link.

Type:

str | None

url

The URL of the destination page.

Type:

str | None

url_displayed

The URL as it is displayed in search results.

Type:

str | None

description

The description (snippet) associated with the link.

Type:

str | None

date

The date associated with the result, if shown.

Type:

str | None

class valueserp.models.FeaturedSnippet(text: str | None, title: str | None, source_url: str | None)

Represents a featured snippet or answer box result.

text

The text within the featured snippet.

Type:

str | None

title

The title of the featured snippet link.

Type:

str | None

source_url

The URL from where the featured snippet is sourced.

Type:

str | None

class valueserp.models.PAAItem(question: str | None, answer: str | None, source_url: str | None)

Represents an item under the “People also ask” (PAA) accordion.

question

The question text of the PAA item.

Type:

str | None

answer

The answer text of the PAA item.

Type:

str | None

source_url

The URL from where the PAA item is sourced.

Type:

str | None