---
title: "Downloading Scan Results using the FPR API"
slug: "downloading-scan-results-using-the-fpr-api"
description: "Learn how to use Traceable’s FPR API to download Fortify Project Results (FPR) from application security scans. This guide explains required parameters, authentication, output formats, and sample requests for integrating scan results into security workflows."
updated: 2025-09-05T10:55:57Z
published: 2025-09-05T10:55:57Z
---

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

# Downloading Scan Results using the FPR API

Traceable provides the FPR API to download Fortify Project Results (FPR) files generated from your AST scans. You can extract these files to access detailed information on the detected issues, enabling you to analyze further and integrate with your security workflows.

> [!NOTE]
> Note
> 
> To enable this API for your account, you must contact Traceable Support.

The following sections highlight the API details and the parameters you can use to download the scan results.

## API Details

- **URI** — `https://api.traceable.ai/rest/v1/download/fortify/fpr`
- **Method** — `GET`

## Parameters

- **suiteId** (required) — The Scan ID (previously Suite ID) of the scan that contains the scan run number.

> [!NOTE]
> Note
> 
> To download the scan results, you must have access to the associated environment.
- **runNumber** (optional) — The specific run number for which you wish to download the FPR.

> [!NOTE]
> Note
> 
> If you do not provide this field, Traceable downloads the FPR for the latest scan run, by default.

## Authorization Header

- **Header Key** — `Authorization`
- **Header Value** — `&lt;traceable-api-key&gt;`. For more information on generating the API key, see [Public APIs](/docs/public-apis#step-1-–-copy-the-platform-api-token).

---

## Output

The API downloads the results in a file having the following format: `&lt;scanName&gt;_&lt;runNumber&gt;.fpr`. Unzipping this file extracts the `webinspect.xml` file containing the issue details.

---

## Sample Requests

The following are sample requests you can use to download the scan results:

```bash
# Replace the placeholders in the commands below with your values

# Downloading FPR for a specific scan run number
curl -OJ 'https://api.traceable.ai/rest/v1/download/fortify/fpr?suiteId=<scanId>&runNumber=<runNumber>' \
-H 'Authorization: <traceable-api-key>'

# Downloading FPR for the latest scan run
curl -OJ 'https://api-dev-sandbox.traceable.ai/rest/v1/download/fortify/fpr?suiteId=<scanId>' \
-H 'Authorization: <traceable-api-key>'
```

Fortify Project Results (FPR) is a file format for storing the results of application security analysis. It contains information about identified issues, their severity, location, and remediation guidance. FPR is commonly used for sharing, reviewing, and integrating security findings across development and security teams.
