# Google Images

Extract Google Images details — URL, source, description, dimensions, and thumbnail — by providing a query and image count

**Pricing:** $1.8 / 1k results

**Endpoint:** `POST /api/v1/agents/google/images/run`

**Auth:** `Authorization: Bearer mk_live_...`

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `queries` | array | Yes | Image search queries. One per line. |
| `maxResults` | integer | No | Image results per query. Use 0 for all. |

## Example

```bash
curl -X POST https://api.mindcase.co/api/v1/agents/google/images/run \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"params":{"queries":["..."]}}'
```

```python
import requests

resp = requests.post(
    "https://api.mindcase.co/api/v1/agents/google/images/run",
    headers={"Authorization": "Bearer mk_live_YOUR_API_KEY"},
    json={"params": {
    "queries": [
        "..."
    ]
}},
)
data = resp.json()
```

## Get the results

`run` is async and returns a `job_id`. Poll until `status` is `completed`, then read the rows:

```bash
# 1) check status
curl https://api.mindcase.co/api/v1/jobs/JOB_ID \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"

# 2) when status == completed, fetch the rows
curl https://api.mindcase.co/api/v1/jobs/JOB_ID/results \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"
```

Full API reference (auth, jobs, balance, SDKs, MCP): https://mindcase.co/skills.md

## 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 |
