Prisma
prisma.io › home › rest › rest › rest › rest › rest
Building REST APIs with Prisma ORM | Prisma Documentation
This page gives explains how to build fullstack applications with Prisma. It shows how Prisma fits in with fullstack frameworks and provides practical examples · Supported librariesREST API server exampleGETPOSTPUTDELETEReady-to-run example projects
Building a Node.js API with Prisma in minutes, using ...
02:11:15
Building a REST API with NestJS and Prisma - Marc Stammerjohann ...
19:34
Autogenerate GraphQL API from Prisma schema - Michał Lytek | Prisma ...
02:03:45
Building APIs with Prisma and Apollo Server - YouTube
Accessing the API Docs || Prisma Cloud #prismacloud ...
Let’s build a REST API with Bun, Prisma and Elysia - YouTube
Palo Alto Networks
docs.paloaltonetworks.com › prisma-access › administration › prisma-access-overview › prisma-access-apis
Prisma Access APIs
3 weeks ago - Operational Commands: XML APIOperational Commandsrequestplugins cloud_servicesprisma-access · As you navigate in the XML tree, Prisma Access populates the tree in the XML area. You can enter required values in the XML area and click Submit to process an XML request. For example, to request the onboarding status of a job, navigate to XML APIOperational Commandsrequestpluginscloud_servicesprisma-accessjob-statusjobid, enter the Job id in the jobid field, enter the Service Type servicetype area, and click Submit to submit your request.
GitHub
github.com › prisma › prisma-examples
GitHub - prisma/prisma-examples: 🚀 Ready-to-run Prisma example projects
The accelerate folder contains examples of projects using Prisma Accelerate for connection pooling and global caching. ... The compute directory contains applications ready to deploy to Prisma Compute.
Starred by 6.6K users
Forked by 1.5K users
Languages TypeScript 84.7% | JavaScript 5.5% | Vue 4.3% | CSS 2.0% | Astro 1.6% | HTML 0.8%
Pan
pan.dev › welcome to the prisma cloud apis
Welcome to the Prisma Cloud APIs | Develop with Palo Alto Networks
The Prisma Cloud API allows you to programmatically access and manage your Prisma Cloud resources, making it easy to automate tasks, integrate with other tools, and build custom integrations. With a variety of endpoints available, Prisma Cloud API aims to automate tasks and facilitate integrations ...
DigitalOcean
digitalocean.com › community › tutorials › how-to-build-a-rest-api-with-prisma-and-postgresql
How To Build a REST API with Prisma and PostgreSQL | DigitalOcean
November 8, 2022 - Prisma is an open source database toolkit. In this tutorial, you will build a REST API for a small blogging application in TypeScript using Prisma and a Post…
Prisma
prisma.io › home › getting started › getting started
Partner Database Provisioning & User Claim Flow | Prisma Documentation
import axios from "axios"; import dotenv from "dotenv"; // Load environment variables dotenv.config(); const API_URL = "https://api.prisma.io/v1"; const SERVICE_TOKEN = process.env.PRISMA_SERVICE_TOKEN; if (!SERVICE_TOKEN) { throw new Error("PRISMA_SERVICE_TOKEN is not set in the environment"); } // Set HTTP headers to be used in this script const headers = { Authorization: `Bearer ${SERVICE_TOKEN}`, "Content-Type": "application/json", }; async function main() { // Create a new project in your Prisma Console workspace const projectName = `demo-project-${Date.now()}`; const region = "us-east-1"
Palo Alto Networks
docs.paloaltonetworks.com › prisma-access › administration › prisma-access-overview › prisma-access-apis › monitor-prisma-access-apis
Prisma Access Insights APIs
3 weeks ago - To see whether your tenant uses TSG IDs, go to the Prisma Access hub, click on the Prisma Access Insights application name, and look in the Manage Apps section. The 2.0 APIs can also be used by Prisma Access (Managed by Panorama) customers.
Prisma Cloud
docs.prismacloud.io › en › enterprise-edition › content-collections › data-security-posture-management › api-documentation › api-documentation
API Documentation - Prisma Cloud
June 11, 2025 - Unlock the full potential of Prisma Cloud with our Content Collections. These comprehensive resources are your key to mastering the suite of functionality available on ...
Prisma Cloud
docs.prismacloud.io › en › enterprise-edition › content-collections › get-started › access-keys
Access the Prisma Cloud REST API
June 11, 2025 - Unlock the full potential of Prisma Cloud with our Content Collections. These comprehensive resources are your key to mastering the suite of functionality available on ...
GitHub
github.com › PaloAltoNetworks › prismacloud-api-python
GitHub - PaloAltoNetworks/prismacloud-api-python: Prisma Cloud utility scripts, and a Python SDK for Prisma Cloud APIs. · GitHub
import os from prismacloud.api import pc_api # Settings for Prisma Cloud Enterprise Edition settings = { "url": "https://api.prismacloud.io/", "identity": "access_key", "secret": "secret_key" } pc_api.configure(settings) print('Prisma Cloud ...
Starred by 68 users
Forked by 60 users
Languages Python