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

Google 역방향 이미지 API

Google의 리버스 이미지 검색을 사용하여 이미지가 웹 전반에서 어디에 나타나는지 확인합니다. engine=google_reverse_image를 설정하고 image_url 파라미터에 공개적으로 접근 가능한 이미지 URL을 전달합니다.

GET https://serp.shifter.io/v1?engine=google_reverse_image&api_key=YOUR_API_KEY
ParameterTypeRequiredDescription
api_keystringyesSERP API 키
enginestringyesgoogle_reverse_image이어야 함
image_urlstringyes검색할 이미지의 URL (URL 인코딩 필요)
devicestringnodesktop, mobile, tablet 중 하나
google_domainstringno사용할 Google 도메인
locationstringno지오타겟팅 위치 이름
uulestringnoGoogle 인코딩 위치 문자열
hlstringno인터페이스 언어 코드
glstringno국가 코드
lrstringno언어 제한, 형식 lang_xx
Terminal window
curl "https://serp.shifter.io/v1?engine=google_reverse_image&api_key=YOUR_API_KEY&image_url=https%3A%2F%2Fencrypted-tbn1.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcRjlJi4t9H9nOiAAv_nRGq8arI_Ed9ILW1lY9lKWa63q8AL_UwI"
{
"search_parameters": {
"engine": "google_reverse_image",
"image_url": "https://encrypted-tbn1.gstatic.com/images?q=tbn:..."
},
"image_sizes": [
{ "size": "1920 x 1080", "image": "https://...", "link": "https://..." }
],
"inline_images": [
{ "source": "https://example.com", "thumbnail": "https://..." }
],
"image_results": [
{
"position": 1,
"title": "Image from example.com",
"link": "https://example.com/page",
"source": "example.com",
"thumbnail": "https://..."
}
]
}