Palo Alto Networks Summary API API

The Summary API API from Palo Alto Networks — 3 operation(s) for summary api.

Operations 3

POST /mt/pab/summary Get summary count of configured users #
POST /mt/pab/summary/cie Get Cloud Identity Engine summary #
POST /mt/pab/summary/tenants Get tenant summary data #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/palo-alto-networks-summary-api-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

palo-alto-networks-summary-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Prisma Browser for MSP Summary API
  version: '1.0'
  description: "The Prisma Browser for MSP API provides a suite of endpoints to automate the management of security services for the SMB market. \nThis API allows developers to programmatically create and configure new tenants, manage license allocation, and retrieve detailed security reports on blocked malware, \nmalicious websites, and unauthorized extensions. By using these services, MSPs can integrate multi-tenant visibility and lifecycle management directly into their \nown dashboards or third-party platforms like ServiceNow. This Open API spec file was created on February 23, 2026. © 2026 Palo Alto Networks, Inc. Palo Alto Networks is a registered trademark of Palo Alto Networks. A list of our trademarks can be found at [https://www.paloaltonetworks.com/company/trademarks.html](https://www.paloaltonetworks.com/company/trademarks.html). All other marks mentioned herein may be trademarks of their respective companies."
tags:
- name: Summary API
paths:
  /mt/pab/summary:
    post:
      summary: Get summary count of configured users
      description: Retrieves the total count of configured users for the specified region.
      operationId: PostMtPabSummary
      responses:
        '200':
          description: Successfully retrieved summary count
          content:
            application/json: {}
        '400':
          description: Invalid request payload
        '404':
          description: Region not found
        '500':
          description: Internal server error
      parameters: []
      tags:
      - Summary API
      requestBody:
        description: Region information for the summary request
        content:
          application/json:
            examples:
              Americas Region:
                description: Request summary for Americas region
                value:
                  region: americas
              US Region:
                description: Request summary for US region
                value:
                  region: us
            schema:
              $ref: '#/components/schemas/RegionRequest'
        required: true
      security:
      - authKey: []
  /mt/pab/summary/cie:
    post:
      summary: Get Cloud Identity Engine summary
      description: Retrieves Cloud Identity Engine (CIE) summary data for the specified region.
      operationId: PostMtPabSummaryCie
      responses:
        '200':
          description: Successfully retrieved CIE summary
          content:
            application/json: {}
        '400':
          description: Invalid request payload
        '404':
          description: Region not found
        '500':
          description: Internal server error
      parameters: []
      tags:
      - Summary API
      requestBody:
        description: Region information for the CIE summary request
        content:
          application/json:
            examples:
              Americas Region:
                description: Request CIE summary for Americas region
                value:
                  region: americas
            schema:
              $ref: '#/components/schemas/RegionRequest'
        required: true
      security:
      - authKey: []
  /mt/pab/summary/tenants:
    post:
      summary: Get tenant summary data
      description: Retrieves summary information for all tenants in the specified region.
      operationId: PostMtPabSummaryTenants
      responses:
        '200':
          description: Successfully retrieved tenant summary
          content:
            application/json: {}
        '400':
          description: Invalid request payload
        '404':
          description: Region not found
        '500':
          description: Internal server error
      parameters: []
      tags:
      - Summary API
      requestBody:
        description: Region information for the tenant summary request
        content:
          application/json:
            examples:
              US Region:
                description: Request tenant summary for US region
                value:
                  region: us
            schema:
              $ref: '#/components/schemas/RegionRequest'
        required: true
      security:
      - authKey: []
components:
  schemas:
    RegionRequest:
      type: object
      required:
      - region
      examples:
      - region: americas
      description: Request payload for region-based operations
      properties:
        region:
          type: string
          minLength: 1
          examples:
          - americas
          description: 'SLS region identifier. Valid values: americas (us), europe (eu), jp, uk, in, sg, ca, id, au, de'
  securitySchemes:
    authKey: {}