Panorama Restapi API

The Restapi API from Panorama — 3 operation(s) for restapi.

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-restapi-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 email required.

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

OpenAPI Specification

panorama-restapi-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Panorama Panorama API Restapi 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: Restapi
paths:
  /restapi/v11.1/Objects/Addresses:
    get:
      summary: List address objects
      parameters:
      - in: query
        name: location
        required: true
        schema:
          type: string
          enum:
          - shared
          - vsys
          - panorama-pushed
          - device-group
      - in: query
        name: device-group
        schema:
          type: string
      responses:
        '200':
          description: A list of address objects.
      tags:
      - Restapi
    post:
      summary: Create an address object
      parameters:
      - in: query
        name: location
        required: true
        schema:
          type: string
      - in: query
        name: name
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Address object created.
      tags:
      - Restapi
  /restapi/v11.1/Policies/SecurityRules:
    get:
      summary: List security rules
      parameters:
      - in: query
        name: location
        required: true
        schema:
          type: string
      - in: query
        name: device-group
        schema:
          type: string
      responses:
        '200':
          description: A list of security rules.
      tags:
      - Restapi
    post:
      summary: Create a security rule
      parameters:
      - in: query
        name: location
        required: true
        schema:
          type: string
      - in: query
        name: name
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Security rule created.
      tags:
      - Restapi
  /restapi/v11.1/Network/Interfaces:
    get:
      summary: List network interfaces
      parameters:
      - in: query
        name: location
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A list of network interfaces.
      tags:
      - Restapi
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).