$1.8 / 1k results
Extract Google Images details — URL, source, description, dimensions, and thumbnail — by providing a query and image count
Endpoint
POST /api/v1/agents/google/images/run
Parameters
List · Image search queries. One per line.
Number · Image results per query. Use 0 for all.
Response columns
| Field | Display name | Type |
|---|
searchQuery | Search Query | text |
sourcePageUrl | Source Page URL | url |
image | Image | url |
thumbnail | Thumbnail | url |
title | Title | text |
sourceDomain | Source Domain | text |
imageWidth | Image Width | number |
imageHeight | Image Height | number |
thumbnailWidth | Thumbnail Width | number |
thumbnailHeight | Thumbnail Height | number |
Example
curl -X POST https://api.mindcase.co/api/v1/agents/google/images/run \
-H "Authorization: Bearer mk_live_abc123def456" \
-H "Content-Type: application/json" \
-d '{
"params": {
"queries": [
"LeBron James"
]
}
}'
Example response
{
"job_id": "job_7f3a2b1c",
"status": "completed",
"data": [
{
"searchQuery": "LeBron James",
"sourcePageUrl": "https://en.wikipedia.org/wiki/LeBron_James",
"image": "https://upload.wikimedia.org/wikipedia/commons/7/7a/LeBron_James_%2851959977144%29_%28cropped2%29.jpg",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQu7zF39XgUsaM32Ws5uOmgqSFD5GNvjbUN7A&s",
"title": "LeBron James - Wikipedia",
"sourceDomain": "en.wikipedia.org",
"imageWidth": 1197,
"imageHeight": 1387,
"thumbnailWidth": 209,
"thumbnailHeight": 242
}
]
}