Google Lens Exact Matches API
Our Google Lens Exact Matches API allows you to scrape results from the Exact Matches section. The results contain title
, source
, link
and other data.
API Parameters
API Examples
Example with Danny DeVito
, type: exact_matches

{
"exact_matches": [
{
"position": 1,
"title": "Danny DeVito - Simple English Wikipedia, the free encyclopedia",
"source": "Wikipedia",
"source_icon": "https://serpapi.com/searches/677dc36196562283724c1644/images/deafea1c37b6e5037ca75e9155dbeea142fb31a1311d2a881860ace009272fdd.png",
"link": "https://simple.wikipedia.org/wiki/Danny_DeVito",
"thumbnail": "https://serpapi.com/searches/677dc36196562283724c1644/images/deafea1c37b6e5037ca75e9155dbeea1a28f893ca7fd8ab6a4dcfb83449bc9a6.jpeg",
"actual_image_width": 220,
"actual_image_height": 262
},
{
"position": 2,
"title": "US Rep. says adult animated sitcom with Danny DeVito as voice of ...",
"source": "KOLN | Nebraska Local News, Weather, Sports | Lincoln, NE",
"source_icon": "https://serpapi.com/searches/677dc36196562283724c1644/images/deafea1c37b6e5034ffb8864586df01d94073495bd10c130cf834d370ac4a5a9.png",
"link": "https://www.1011now.com/2022/09/08/us-rep-adult-animated-sitcom-with-danny-devito-voice-satan-is-evil/",
"thumbnail": "https://serpapi.com/searches/677dc36196562283724c1644/images/deafea1c37b6e5034ffb8864586df01d1c1b432daf30d08cfc15bc257c0547a7.jpeg",
"date": "2 years ago",
"actual_image_width": 800,
"actual_image_height": 450
},
{
"position": 3,
"title": "US Rep. says adult animated sitcom with Danny DeVito as voice of ...",
"source": "Kjct8",
"source_icon": "https://serpapi.com/searches/677dc36196562283724c1644/images/deafea1c37b6e503960d34abc0d19b8be84070edb5e0cf82a410c34f89762ca7.png",
"link": "https://www.kjct8.com/2022/09/08/us-rep-adult-animated-sitcom-with-danny-devito-voice-satan-is-evil/",
"thumbnail": "https://serpapi.com/searches/677dc36196562283724c1644/images/deafea1c37b6e503960d34abc0d19b8b46a2b90cf5f2c7664f04742517d9eebe.jpeg",
"date": "2 years ago",
"actual_image_width": 800,
"actual_image_height": 450
},
...
]
}
Example with Desk
, type: exact_matches
For some matches, the result consists of price information - price
, extracted_price
and stock information - in_stock
or out_of_stock
.

{
"exact_matches": [
{
"position": 1,
"title": "MITTCIRKEL / ALEX desk lively pine effect/white - IKEA",
"source": "IKEA.cn",
"source_icon": "https://serpapi.com/searches/67b81390965622718dbf52a1/images/8bc7200bdda14207bc460d83478b02bb5817669d47bfa15a1d8ecc2c8b7e273b.png",
"link": "https://www.ikea.cn/cn/en/p/mittcirkel-alex-desk-lively-pine-effect-white-s69508685/",
"thumbnail": "https://serpapi.com/searches/67b81390965622718dbf52a1/images/8bc7200bdda14207bc460d83478b02bbfd8ea3901e0f058777a70c531961f4e0.jpeg",
"actual_image_width": 1400,
"actual_image_height": 1400
},
{
"position": 2,
"title": "MITTCIRKEL / ALEX desk, lively pine effect/white, 140x60 cm - IKEA",
"source": "IKEA",
"source_icon": "https://serpapi.com/searches/67b81390965622718dbf52a1/images/8bc7200bdda1420712e90f5556358f4b65216a847af83952041f38cc29fba068.png",
"link": "https://www.ikea.com/nl/en/p/mittcirkel-alex-desk-lively-pine-effect-white-s49508686/",
"thumbnail": "https://serpapi.com/searches/67b81390965622718dbf52a1/images/8bc7200bdda1420712e90f5556358f4be8d86e729b92a516087e42f799d861bf.jpeg",
"price": "$174.99",
"extracted_price": 174.99,
"in_stock": true,
"actual_image_width": 600,
"actual_image_height": 600
},
{
"position": 3,
"title": "mittcirkel/alex/adils - Santo Domingo - IKEA",
"source": "IKEA",
"source_icon": "https://serpapi.com/searches/67b81390965622718dbf52a1/images/8bc7200bdda142072892767e647807ffa640c7a7b49065faf321285e30855ea3.png",
"link": "https://www.ikea.com.do/en/pd/mittcirkel-alex-desk-white-spr-09508674",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRhHF_GSunNk_ro-O8JYxsgCWFR5PtbACQnyV_V34cPmxPZ-TBzrL5Rsh4a&s",
"price": "$11,990.00",
"extracted_price": 11990,
"out_of_stock": true,
"actual_image_width": 500,
"actual_image_height": 500
},
...
]
}
JSON structure overview
{
"exact_matches": [
{
"position": "Integer - Position of the match result",
"title": "String - Title of the match result",
"source": "String - Source name of the match result",
"source_icon": "String - URL of the source's logo",
"link": "String - Link to the match result",
"thumbnail": "String - Thumbnail version of image that is present in the match result's content",
"actual_image_width": "Integer - Width of the actual image",
"actual_image_height": "Integer - Height of the actual image",
"date": "String - Date posted of the match result",
"price": "String - Price of the match result",
"extracted_price": "Float - Price as a float",
"in_stock": "Boolean - The item is currently in stock",
"out_of_stock": "Boolean - The item is currently out of stock"
}
]
}