Get Started
The Prisma Cloud Runtime Security REST API lets you automate workflows and integrate with external systems. Use the API to:
- Set up, configure, reconfigure, and deploy Prisma Cloud Compute components to secure your hosts, containers, and serverless functions against vulnerabilities, malware, and compliance violations.
- Extract the security data that Prisma Cloud Compute has collected about your environment and send it to your monitoring, alerting, and reporting systems.
How to find your version
To find the version of Prisma Cloud Runtime Security that you're running:
-
Log into your Prisma Cloud Compute console.
-
Click the bell icon in the top right of the page.
The drop-down shows the current version:
cURL Examples
All the cURL examples in these documents specify a <CONSOLE>
variable, which represents the address for Console.
The Console address will depend on how Console was installed.
To find your <CONSOLE>
path:
- Log into Console.
- Navigate to Compute > Manage > System > Downloads.
- You can find your
<CONSOLE>
path listed under Path to Console. Click Copy to quickly copy the path to your clipboard.
The cURL example for each endpoint is called with a username (-u <USER>
) only.
The cURL command can be modified to use any of the following:
- Authentication Token: Use the
-H
option to pass the authentication token from the Authenticate endpoint into the request header.
For example, replace <ACCESS_TOKEN>
with the token from the Authenticate endpoint.
$ curl -k \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-X POST \
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
- Username and Password: Use the
-u
and-p
options to include the username and password, eliminating the need to enter a password in a secondary step.
For example, replace <USER>
with the username string and <PASSWORD>
with the password string.
$ curl -k \
-u <USER> \
-p <PASSWORD> \
-X POST \
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
- Username Only: This will require the user's password to be entered as a secondary step.
For example, replace <USER>
with the username string.
$ curl -k \
-u <USER> \
-X POST \
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
Note: This is a more secure method than including the -p
option since your terminal history won't contain the password.
Paginated Responses
Paginated API requests are capped to a max of 50 returned objects because very large responses could DoS Console. The default value is 50 objects per page.
If the response contains more than 50 objects, cycle through the collection with the offset
query parameter to retrieve more objects.
For example:
$ https://<CONSOLE>/api/v<VERSION>/images?limit=50&offset=X
API Rate Limits
Rate limiting is applied to some endpoints. The documentation for each such endpoint has details of the rate limits enforced on it. For example, Get Container Scan Results.
View parameter descriptions
The parameter descriptions are available for each endpoint. The body or query (wherever applicable) parameters are listed after the endpoint description.
The response parameters are hidden under the label Response
200.
Click >
to view hidden parameters.