Submit a Website Link to WildFire (API)
Table of Contents
Expand all | Collapse all
-
- Get a WildFire Verdict (WildFire API)
- Get Multiple WildFire Verdicts (WildFire API)
- Get a List of Samples with Changed WildFire Appliance Verdicts (WildFire API)
- Get a Sample (WildFire API)
- Get a Packet Capture (WildFire API)
- Get a WildFire Analysis Report (WildFire API)
- Get a Malware Test File (WildFire API)
- Get URL Web Artifacts
- WildFire API Error Codes
Submit a Website Link to WildFire (API)
Submit a single website link for WildFire analysis.
The submit/link resource
should not be confused with the submit/url resource.
Use the submit/link resource for a website,
but use /submit/url for files hosted on a
website.
Resource
/submit/link/
Request Parameters
Use the following form
parameters when you submit a single website link for WildFire analysis:
Parameters | Description | Example |
|---|---|---|
| (Required for API key authentication) API key | Example:
|
| (Required for token-based authentication) HTTP request header for token-based authentication. To obtain an access token, create a WildFire API token in Strata Cloud Manager, then generate an access token from the authentication service. | Example:
|
| (Required for Prisma Access and Prisma Cloud
Compute-based WildFire public API keys) Designates the API
key type | Example:
Options
include:
|
| (Required) Website URL | Example:
|
Example Request
Make a POST request to the /submit/link resource and include the website link. Authenticate using one of the following methods:
- API key authentication—Pass the API key as a form field:curl -F 'apikey=<API KEY>' -F 'link=https://www.paloaltonetworks.com/' 'https://wildfire.paloaltonetworks.com/publicapi/submit/link'Token-based authentication—Pass a Bearer token in the Authorization header:curl -F 'link=https://www.paloaltonetworks.com/' -H 'Authorization: Bearer <ACCESS_TOKEN>' 'https://wildfire.paloaltonetworks.com/publicapi/submit/link'The API analyses the specified link and does not traverse other links on the page. The XML response contains the original URL along with the SHA256 and MD5 hash:<wildfire> <submit-link-info> <url>https://www.paloaltonetworks.com/</url> <sha256>a3c31e89a841df37d77d00f17f3f6a25751c23116f2a141095f93170e8aa37b5</sha256> <md5>d7192254cc42b490e039ef327de73bda</md5> </submit-link-info> </wildfire>