Panorama Panorama API API

The Panorama API API from Panorama — 1 operation(s) for panorama api.

Operations 2

GET /api/ PAN-OS XML API request
POST /api/ PAN-OS XML API request (POST form)

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/panorama-panorama-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

panorama-panorama-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Panorama API
  description: 'Panorama and PAN-OS XML and REST APIs for centralized network security

    management across Palo Alto Networks firewalls. The XML API uses

    query-parameter style request types (`type=keygen`, `type=op`,

    `type=config`, etc.), while the REST API uses versioned resource paths

    under `/restapi/v{version}/`.

    '
  version: '11.1'
  contact:
    name: Palo Alto Networks
    url: https://docs.paloaltonetworks.com/panorama
servers:
- url: https://{panorama_host}
  description: Panorama management server
  variables:
    panorama_host:
      default: panorama.example.com
      description: Hostname or IP of the Panorama appliance
security:
- ApiKeyHeader: []
- ApiKeyQuery: []
tags:
- name: Panorama API
paths:
  /api/:
    get:
      summary: PAN-OS XML API request
      description: 'Single XML API entry point. The operation is selected through the

        `type` query parameter (e.g. `keygen`, `op`, `config`, `commit`,

        `report`, `export`, `import`, `log`, `user-id`).

        '
      parameters:
      - in: query
        name: type
        required: true
        schema:
          type: string
          enum:
          - keygen
          - op
          - config
          - commit
          - report
          - export
          - import
          - log
          - user-id
      - in: query
        name: action
        schema:
          type: string
          description: Sub-action for config/op (e.g. get, set, edit, delete, show).
      - in: query
        name: cmd
        schema:
          type: string
          description: XML command body for op/commit/report requests.
      - in: query
        name: xpath
        schema:
          type: string
          description: XPath used by config requests.
      - in: query
        name: key
        schema:
          type: string
          description: API key (alternative to X-PAN-KEY header).
      responses:
        '200':
          description: XML response document.
          content:
            application/xml:
              schema:
                type: string
      tags:
      - Panorama API
    post:
      summary: PAN-OS XML API request (POST form)
      description: Same as GET, but parameters may be provided as form fields.
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                type:
                  type: string
                action:
                  type: string
                cmd:
                  type: string
                xpath:
                  type: string
                key:
                  type: string
      responses:
        '200':
          description: XML response document.
          content:
            application/xml:
              schema:
                type: string
      tags:
      - Panorama API
components:
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: X-PAN-KEY
      description: API key generated via `/api/?type=keygen`.
    ApiKeyQuery:
      type: apiKey
      in: query
      name: key
      description: API key passed as a query parameter (XML API).