: Submit a Website Link to WildFire (API)
Focus
Focus

Submit a Website Link to WildFire (API)

Table of Contents

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
apikey
(
Required
) API key
Example:
apikey=<API KEY>
agent
(
Required for Prisma Access and Prisma Cloud Compute-based WildFire public API keys
) Designates the API key type
Example:
agent=pcc
Options include:
  • pcc
    —for use with Prisma Cloud Compute-based WildFire public API keys
  • prismaaccessapi
    —for use with Prisma Access-based WildFire public API keys
link
(
Required
) Website URL
Example:
link=http://paloaltonetworks.com

Example Request

Make a POST request to the /submit/link resource and include the API key along with the website link, as shown in following cURL command:
curl -F 'apikey=<API KEY>' -F 'link=https://www.paloaltonetworks.com/' '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>

Recommended For You