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

Google 逆画像検索API

Googleの逆画像検索を使用して、画像がWeb上のどこに表示されているかを調べます。engine=google_reverse_imageを設定し、image_urlパラメータに公開アクセス可能な画像URLを渡してください。

GET https://serp.shifter.io/v1?engine=google_reverse_image&api_key=YOUR_API_KEY
ParameterTypeRequiredDescription
api_keystringyesあなたのSERP APIキー
enginestringyesgoogle_reverse_imageである必要があります
image_urlstringyes検索対象の画像のURL(URLエンコードされている必要があります)
devicestringnodesktopmobile、または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://..."
}
]
}