Skip to main content

Application catalog

The application catalog is the Universal Application Directory (UAD): a curated library of SaaS and web applications maintained by Palo Alto Networks. Catalog applications have type: catalog and are updated regularly as services add domains, change URLs, or earn new certifications. You can list, read, and reference catalog applications in rules, but you cannot create, edit, or delete them.

For curated desktop applications, see the localdesktopcatalog type on Desktop applications.

On this page: what you can and cannot do, list and filter, get one, key fields, endpoint reference, tips.


What you can and cannot do

OperationSupported?Notes
List catalog appsYesGET /applications with type=catalog
Read one catalog appYesGET /applications/{id}
Reference in a ruleYesBy ID, directly or via an application group
Read classification and tagsYesReturned like any other application. See Tags and classification
Set classification and tagIDsNot yetCatalog apps have no create or update endpoint. Setting them through the API is planned for a future release. Until then, set them on the Applications page in the Prisma Browser admin console in Strata Cloud Manager
Create / edit / deleteNoCatalog apps are managed by Palo Alto Networks
Draft and publishN/ACatalog apps are read-only. The draft model does not apply

List and filter

Filter the full applications list to type=catalog. Supports name search, pagination (limit / cursor), and sort / order.

GET /seb-api/v1/applications
curl -sS -G "$PB_API_BASE/applications" \
-H "Authorization: Bearer $PB_TOKEN" \
--data-urlencode "type=catalog" \
--data-urlencode "name=figma" \
--data-urlencode "limit=50"

Response (200):

{
"data": [
{
"type": "catalog",
"id": "0AP01FIGMAXXXXXXXXXXXXXXXXXXX",
"name": "Figma",
"description": "Collaborative interface design tool.",
"category": "Design",
"metadata": { "createdTime": "2024-04-26T12:48:39Z", "lastUpdatedTime": "2026-01-15T10:00:00Z" },
"urls": [ "*://www.figma.com/*", "*://figma.com/*" ],
"catalog_name": "figma"
}
// ... more catalog applications
],
"metadata": { "configurationVersion": { "id": "0CV01EXAMPLEXXXXXXXXXXXXXXXXX", "status": "draft", "number": 0 } },
"pageInfo": { "hasNextPage": true, "cursor": "gaFpvTBBUDAx...", "totalCount": 1 }
}

To include compliance and security metadata in the response, add includeCatalogAttributes=true:

curl -sS -G "$PB_API_BASE/applications" \
-H "Authorization: Bearer $PB_TOKEN" \
--data-urlencode "type=catalog" \
--data-urlencode "name=figma" \
--data-urlencode "includeCatalogAttributes=true"

Response (200). Each item gains a catalog_attributes object; unknown values are null:

{
"data": [
{
"type": "catalog",
"id": "0AP01FIGMAXXXXXXXXXXXXXXXXXXX",
"name": "Figma",
"category": "Design",
"urls": [ "*://figma.com/*" ],
"catalog_name": "figma",
"catalog_attributes": {
"encryption_in_transit": true,
"encryption_at_rest": true,
"soc2": true,
"iso_27001": true,
"gdpr": true,
"hipaa": null
// ... many more compliance attributes, null when unknown
}
}
// ... more catalog applications
],
"pageInfo": { "hasNextPage": true, "cursor": "gaFpvTBBUDAx...", "totalCount": 1 }
}

Get one

GET /seb-api/v1/applications/{id}
curl -sS "$PB_API_BASE/applications/$APP_ID" \
-H "Authorization: Bearer $PB_TOKEN"

Response (200):

{
"type": "catalog",
"id": "0AP01FIGMAXXXXXXXXXXXXXXXXXXX",
"name": "Figma",
"description": "Collaborative interface design tool.",
"category": "Design",
"metadata": { "createdTime": "2024-04-26T12:48:39Z", "lastUpdatedTime": "2026-01-15T10:00:00Z" },
"urls": [ "*://figma.com/*" ],
"catalog_name": "figma"
}

To include catalog attributes on a single-app read, append ?includeCatalogAttributes=true to the URL.


Key fields

FieldTypeNotes
idstringPrefixed with 0AP...
typestringAlways catalog for these objects
namestringDisplay name as it appears in the directory
catalog_namestringCanonical catalog identifier (may differ from name)
urlsarrayThe URL patterns that identify this application. Maintained by Palo Alto Networks
classificationstringRead-only through this API. See Tags and classification
tagsarrayRead-only through this API. Objects of { id, name }

catalog_attributes

Returned when includeCatalogAttributes=true is set. Contains security and compliance metadata for the application:

AttributeTypeWhat it indicates
encryption_in_transitbooleanData is encrypted in transit
encryption_at_restbooleanData is encrypted at rest
data_retentionstringData retention policy or period
soc1booleanSOC 1 certified
soc2booleanSOC 2 certified
iso_27001booleanISO 27001 certified
gdprbooleanGDPR compliant
hipaabooleanHIPAA compliant
pcibooleanPCI DSS compliant
finrabooleanFINRA compliant

Not every application has values for every attribute. A missing or null value means the information is not available in the catalog for that app.


Endpoint reference

MethodPathPurpose
GET/applicationsList applications; filter by type=catalog
GET/applications/{id}Read one catalog application

All paths are under the /seb-api/v1 base.


Tips and gotchas

note

Check the catalog before creating a SaaS application. If the application already exists in the catalog, reference the catalog entry instead of recreating it as custom. You inherit its maintained URL list and compliance metadata, and Palo Alto Networks keeps it up to date. Only create a custom application when the catalog has no match.

note

Catalog apps are maintained and updated regularly. You do not need to manage their URLs. When a SaaS application adds or changes domains, the catalog entry is updated automatically. This is the main advantage of referencing a catalog app over a custom app for well-known services.

note

Request ?includeCatalogAttributes=true only when you need it. The compliance metadata is not included by default to keep response payloads small. Add the parameter when you are auditing or building a catalog browser.

note

Classification and tags are returned, but you cannot set them through this API yet. A catalog application returns classification and tags like any other application, and those values are scoped to your tenant. Setting them through the API is planned for a future release. Until then, set them on the Applications page in the Prisma Browser admin console in Strata Cloud Manager.