Skip to content
Login Sign up

Response shape

Every Google engine returns the same top-level structure. The specific fields inside organic_results and the SERP feature blocks vary by engine, but the envelope is identical.

FieldTypeDescription
search_metadataobjectQuery echo, timing, request id
search_parametersobjectAll the parameters you sent
search_informationobjectTotal results, query displayed
organic_resultsarrayRanked web results
paginationobjectNext/previous page cursors
serpapi_paginationobjectCanonical pagination helpers

SERP features appear as additional top-level fields when present on the page:

FieldEngine that returns it
adsgoogle
answer_boxgoogle
knowledge_graphgoogle
related_questionsgoogle
related_searchesgoogle, bing, yandex
inline_imagesgoogle
inline_videosgoogle
local_resultsgoogle
local_mapgoogle
shopping_resultsgoogle_shopping
news_resultsgoogle_news
jobs_resultsgoogle_jobs
events_resultsgoogle_events
places_resultsgoogle_maps
reviews_resultsgoogle_maps_reviews
interest_over_timegoogle_trends
{
"id": "66f4a7b2e4b00b0001a1b2c3",
"status": "Success",
"created_at": "2026-02-01T12:34:56.789Z",
"processed_at": "2026-02-01T12:34:58.012Z",
"google_url": "https://www.google.com/search?q=pizza&...",
"raw_html_file": "https://serp.shifter.io/raw_html/...",
"total_time_taken": 2.31
}
{
"organic_results": [
{
"position": 1,
"title": "Best Pizza in Chicago",
"link": "https://example.com/pizza",
"displayed_link": "example.com",
"snippet": "Chicago's deep dish institution since 1955...",
"favicon": "https://example.com/favicon.ico",
"sitelinks": { "...": "..." }
}
]
}
{
"pagination": {
"current": 1,
"next": "https://serp.shifter.io/v1?engine=google&q=pizza&start=10&...",
"other_pages": { "2": "...start=10...", "3": "...start=20..." }
}
}

Pass start to the next page (10, 20, …) or follow the next URL directly.

On failure, the top level contains only error and error_code:

{
"error": "Your API key is invalid",
"error_code": 401
}