Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mindcase.co/llms.txt

Use this file to discover all available pages before exploring further.

$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

queries
array
required
List · Image search queries. One per line.
maxResults
integer
default:50
Number · Image results per query. Use 0 for all.

Response columns

FieldDisplay nameType
searchQuerySearch Querytext
sourcePageUrlSource Page URLurl
imageImageurl
thumbnailThumbnailurl
titleTitletext
sourceDomainSource Domaintext
imageWidthImage Widthnumber
imageHeightImage Heightnumber
thumbnailWidthThumbnail Widthnumber
thumbnailHeightThumbnail Heightnumber

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

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
    }
  ]
}