---
title: "Get StackHawk scan policy"
method: GET
path: "/api/v1/policy"
tags: ["Scan Policies"]
---

# Get StackHawk scan policy

`GET /api/v1/policy`

## Get StackHawk Scan Policy
This endpoint retrieves a specific StackHawk scan policy. It provides details of the policy configuration, including the set of plugins and technology flags. StackHawk scan policies can be used as-is or as a starting point for customizing your application's scan policy.

**Usage:**
- Use the [All Scan Policies](ref:allstackhawkscanpolicies) endpoint to get a list of named StackHawk scan policies.
- If no `policyName` is provided in the request, this endpoint will return the DEFAULT scan policy.


> Requires `read:policy` permission.

## Query parameters

- `policyName` string

## Response `200`

OK

- ApplicationGetApplicationScanPolicyResponse
  - `scanPolicy` ScanpolicyScanPolicy — The ScanPolicy defines the vulnerability checks aka 'plugins' and technology flags that configure HawkScan runs. Scan policies are applied as configuration to HawkScan, and are either predefined _StackHawk Policies_ identified by `name` or customized by _Application Policies_ per `applicationId`. Plugins in the scan define the vulnerability checks that run in HawkScan tests. Tech flags further toggle the behavior of vulnerability checks relative to applicable technologies.
    - `applicationId` string — The UUID identifier of the scan policy application. If no application ID is present, the scan policy is defined by StackHawk. If the application ID is present, then the scan policy is customized for the given application only.
    - `description` string — The description for this policy.
    - `displayName` string — The human readable display name for this policy.
    - `id` string — The UUID identifier of this scan policy.
    - `isCustomized` boolean — Indicates whether the plugins have been updated from original scan policy.
    - `name` string — The referencable unique name of a StackHawk scan policy.
    - `plugins` ScanpolicyPlugin[] — List of the plugins defined for this policy.
      - `defaultRisk` 'UNKNOWN' | 'INFO' | 'LOW' | 'MEDIUM' | 'HIGH' — Default risk for this plugin. Currently unused.
      - `enabled` boolean — Enables the plugin. Plugins will only run in a scan when marked as enabled.
      - `name` string — The Plugin name.
      - `pluginId` string — The UUID identifier of this plugin.
      - `pluginType` 'ACTIVE' | 'PASSIVE' — The type of plugin to run as. Either ACTIVE or PASSIVE.
      - `status` 'ADDON_STATUS_ALPHA' | 'ADDON_STATUS_BETA' | 'ADDON_STATUS_RELEASE' — The release quality of this plugin.
      - `strength` 'STRENGTH_LOW' | 'STRENGTH_MEDIUM' | 'STRENGTH_HIGH' | 'STRENGTH_INSANE' | 'STRENGTH_OFF' — The strength of this plugin. Currently unused.
      - `threshold` 'THRESHOLD_LOW' | 'THRESHOLD_MEDIUM' | 'THRESHOLD_HIGH' | 'THRESHOLD_OFF' — The threshold of this plugin. Currently unused.
    - `techFlags` object — Technology flags for this policy. This is a collection of specific technology identifiers that further configure scan behavior.
  - `status` 'OK' | 'NOT_FOUND'

---

[API](https://skmtc.net/stackhawk/apis/stackhawk-public-api.md) · [All operations](https://skmtc.net/stackhawk/apis/stackhawk-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stackhawk/stackhawk-public-api/versions/ad3dfd54cb63/schema)
