---
title: "Get application"
method: GET
path: "/api/v1/app/{appId}"
tags: ["Applications"]
---

# Get application

`GET /api/v1/app/{appId}`

## Get Application

Gets this StackHawk Application.

Applications group scan results from HawkScan, and coordinate settings to influence HawkScan behavior. The application may also contain a specific environment name and id.
For more information, see [Applications](https://docs.stackhawk.com/web-app/applications.html).

| Parameter | Default | Description |
|:---:|:---:|:---:|
|applicationId|""|The UUID identifier of this application.|
|name|""|The name of this application.|
|env|""|The name of this environment. Only set when requesting Application Environments.|
|envId|""|The UUID identifier of this environment.|
|applicationStatus|"ACTIVE"|The status of this application. Either ACTIVE or ENV_INCOMPLETE.|
|organizationId|""|The UUID identifier of the organization that owns this application.|
|applicationType|"STANDARD"|The type of this application.|
|cloudScanTarget|{}|Optional Cloud Scan Target configuration.|

```json
{
	"applicationId": "",
	"name": "",
	"env": "",
	"envId": "",
	"applicationStatus": "UNKNOWN",
	"organizationId": "",
	"applicationType": "UNKNOWN",
	"cloudScanTarget": {}
}
```
```javascript
const application = {
	applicationId: "",
	name: "",
	env: "",
	envId: "",
	applicationStatus: "UNKNOWN",
	organizationId: "",
	applicationType: "UNKNOWN",
	cloudScanTarget: {},
}
```
```typescript
interface Application {
	applicationId: string
	name: string
	env: string
	envId: string
	applicationStatus: ApplicationApplicationStatus
	organizationId: string
	applicationType: ApplicationApplicationType
	cloudScanTarget: ApplicationCloudScanTarget
} 

const application: Application = {
	applicationId: "",
	name: "",
	env: "",
	envId: "",
	applicationStatus: "UNKNOWN",
	organizationId: "",
	applicationType: "UNKNOWN",
	cloudScanTarget: {},
}
```
```java
public class Application {

	public String applicationId;
	public String name;
	public String env;
	public String envId;
	public ApplicationApplicationStatus applicationStatus;
	public String organizationId;
	public ApplicationApplicationType applicationType;
	public ApplicationCloudScanTarget cloudScanTarget;

}
```
```kotlin
data class Application(
	var applicationId: String,
	var name: String,
	var env: String,
	var envId: String,
	var applicationStatus: ApplicationApplicationStatus,
	var organizationId: String,
	var applicationType: ApplicationApplicationType,
	var cloudScanTarget: ApplicationCloudScanTarget
)
```
```python
class Application:
	applicationId = ""
	name = ""
	env = ""
	envId = ""
	applicationStatus = "UNKNOWN"
	organizationId = ""
	applicationType = "UNKNOWN"
	cloudScanTarget = {}
```
```rust
struct Application {
	applicationId: &str,
	name: &str,
	env: &str,
	envId: &str,
	applicationStatus: ApplicationApplicationStatus,
	organizationId: &str,
	applicationType: ApplicationApplicationType,
	cloudScanTarget: ApplicationCloudScanTarget,
}
```

> 👥 Teams Supported
> If the application belongs to a StackHawk [Team](https://docs.stackhawk.com/web-app/teams.html), only members of the Team can call this endpoint.


> Requires `read:application` permission.

## Path parameters

- `appId` string, uuid, required

## Response `200`

Applications group scan results from HawkScan, and coordinate settings to influence HawkScan behavior. The application may also contain a specific environment name and id.
For more information, see [Applications](https://docs.stackhawk.com/web-app/applications.html).

- ApplicationApplication — Applications group scan results from HawkScan, and coordinate settings to influence HawkScan behavior. The application may also contain a specific environment name and id. For more information, see [Applications](https://docs.stackhawk.com/web-app/applications.html).
  - `applicationId` string — The UUID identifier of this application.
  - `applicationStatus` 'ACTIVE' | 'ENV_INCOMPLETE' — The status of this application. Either ACTIVE or ENV_INCOMPLETE.
  - `applicationType` 'STANDARD' | 'CLOUD' — The type of this application.
  - `cloudScanTarget` ApplicationCloudScanTarget — Cloud Scan Target Configuration.
    - `isDomainVerified` boolean — Indicates if the domain is verified or not.
    - `targetURL` string — The target URL.
  - `dataType` 'NONE' | 'PII' | 'PCI' | 'FIN' | 'PKI' | 'HIPAA' | 'FERPA' — The perceived dataType of this application. Currently unused.
  - `env` string — The name of this environment. Only set when requesting Application Environments.
  - `envId` string — The UUID identifier of this environment.
  - `name` string — The name of this application.
  - `organizationId` string — The UUID identifier of the organization that owns this application.
  - `riskLevel` 'LOW' | 'MEDIUM' | 'HIGH' | 'CRITICAL' — The perceived riskLevel of this application. Currently unused.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized

---

[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)
