콘텐츠로 이동
로그인 가입하기

응답 형식

모든 Google 엔진은 동일한 최상위 구조를 반환합니다. organic_results 내부의 구체적인 필드와 SERP 기능 블록은 엔진에 따라 다르지만, 봉투 구조 자체는 동일합니다.

FieldTypeDescription
search_metadataobject쿼리 에코, 타이밍, 요청 id
search_parametersobject전송한 모든 파라미터
search_informationobject총 결과 수, 표시된 쿼리
organic_resultsarray순위가 매겨진 웹 결과
paginationobject다음/이전 페이지 커서
serpapi_paginationobject표준 페이지네이션 헬퍼

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를 전달하거나(10, 20, …) next URL을 직접 따라가면 됩니다.

실패 시, 최상위에는 errorerror_code만 포함됩니다:

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