# Get

Launch stage: GA

`GET /api/2.1/unity-catalog/artifact-allowlists/{artifact_type}`

Get the artifact allowlist of a certain artifact type.
 The caller must be a metastore admin or have the **MANAGE ALLOWLIST** privilege
 on the metastore.

API scopes: unity-catalog

## Path parameters

- `artifact_type` (string, optional)
  The artifact type of the allowlist.
  Possible values: `ARTIFACT_TYPE_UNSPECIFIED`, `INIT_SCRIPT`, `LIBRARY_JAR`, `LIBRARY_MAVEN`

## Returns

Returns the ArtifactAllowlistInfo object.

## Response

```json
{
  "artifact_matchers": [
    {
      "artifact": "string",
      "match_type": "string"
    }
  ],
  "metastore_id": "string",
  "created_by": "string",
  "created_at": 0
}
```

