> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Scan URL

Scans a URL and returns the analysis.

NOTE: If the analysis is taking too long, this action may return it in a queued state.
You can use the "Get Analysis" action to retrieve it's completed result later or increase the step timeout.

<Note>
  External Documentation

  To learn more, visit the [VirusTotal documentation](https://virustotal.readme.io/reference/scan-url).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter     | Description                                     |
  | ------------- | ----------------------------------------------- |
  | Time Interval | The duration (seconds) between analysis checks. |
  | URL           | The URL to scan.                                |
</div>

## Example Output

```json theme={"dark"}
{
	"data": {
		"id": "<string>",
		"type": "<string>",
		"links": {
			"self": "<string>",
			"item": "<string>"
		},
		"attributes": {
			"stats": {
				"malicious": 1,
				"suspicious": 2,
				"undetected": 24,
				"harmless": 117,
				"timeout": 2
			},
			"status": "<string>",
			"date": 3019433,
			"results": {
				"Artists Against 419": {
					"method": "<string>",
					"engine_name": "<string>",
					"category": "<string>",
					"result": "<string>"
				},
				"ZeroFox": {
					"method": "<string>",
					"engine_name": "<string>",
					"category": "<string>",
					"result": "<string>"
				}
			}
		}
	},
	"meta": {
		"url_info": {
			"id": "<string>",
			"url": "<string>"
		}
	}
}
```

## Workflow Library Example

[Detect and Respond to Gmail Email Phishing](https://library.blinkops.com/workflows/detect-and-respond-to-gmail-email-phishing)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/detect-and-respond-to-gmail-email-phishing/canvas" />
</div>
