コンテンツにスキップ
ログイン サインアップ

レスポンスの形式

Every Google engineは同じトップレベル構造を返します。organic_results 内の具体的なフィールドやSERP機能ブロックはエンジンによって異なりますが、外側の構造は同一です。

FieldTypeDescription
search_metadataオブジェクトクエリのエコー、処理時間、リクエストID
search_parametersオブジェクト送信したすべてのパラメータ
search_informationオブジェクト総結果数、表示されたクエリ
organic_results配列ランク付けされたウェブ結果
paginationオブジェクト次/前ページのカーソル
serpapi_paginationオブジェクト正規のページネーションヘルパー

ページに存在する場合、SERP機能は追加のトップレベルフィールドとして表示されます。

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..." }
}
}

次のページには start を渡します(1020、…)。または next のURLを直接たどることもできます。

失敗した場合、トップレベルには errorerror_code のみが含まれます。

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