Panorama REST API
The REST API API from Panorama — 3 operation(s) for rest api.
The REST API API from Panorama — 3 operation(s) for rest api.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/panorama-rest-api-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Panorama 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: REST API
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:
- REST API
operationId: getRestapiV111ObjectsAddresses
x-operation-id-source: derived
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:
- REST API
operationId: postRestapiV111ObjectsAddresses
x-operation-id-source: derived
/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:
- REST API
operationId: getRestapiV111PoliciesSecurityRules
x-operation-id-source: derived
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:
- REST API
operationId: postRestapiV111PoliciesSecurityRules
x-operation-id-source: derived
/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:
- REST API
operationId: getRestapiV111NetworkInterfaces
x-operation-id-source: derived
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).