# urlscan.io Google Domain Scans Scraper

**Use case:** 

Scrape urlscan.io scans for google.com with scan UUID, task URL, page URL, method, and time. Export structured website scan data to JSON or CSV.

## Input

```json
{
  "query": "domain:google.com",
  "maxItems": 50,
  "pageSize": 100
}
```

## Output

```json
{
  "uuid": {
    "label": "Uuid",
    "format": "text"
  },
  "task_url": {
    "label": "Task url",
    "format": "link"
  },
  "task_visibility": {
    "label": "Task visibility",
    "format": "text"
  },
  "task_method": {
    "label": "Task method",
    "format": "text"
  },
  "task_time": {
    "label": "Task time",
    "format": "date"
  },
  "page_url": {
    "label": "Page url",
    "format": "link"
  },
  "page_domain": {
    "label": "Page domain",
    "format": "text"
  },
  "page_apex_domain": {
    "label": "Page apex domain",
    "format": "text"
  },
  "page_country": {
    "label": "Page country",
    "format": "text"
  },
  "page_server": {
    "label": "Page server",
    "format": "text"
  },
  "page_ip": {
    "label": "Page ip",
    "format": "text"
  },
  "page_asn": {
    "label": "Page asn",
    "format": "text"
  },
  "page_asn_name": {
    "label": "Page asn name",
    "format": "text"
  },
  "page_ptr": {
    "label": "Page ptr",
    "format": "text"
  },
  "page_status": {
    "label": "Page status",
    "format": "text"
  },
  "page_tlsValidDays": {
    "label": "Page tls Valid Days",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [urlscan.io Threat Intelligence Scraper](https://apify.com/parseforge/urlscan-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/urlscan-scraper) to learn more, explore other use cases, and run it yourself.