Palo Alto Networks Repository API

The Repository API from Palo Alto Networks — 1 operation(s) for repository.

Operations 1

GET /code/code/api/v1/repositories/repository Single Repository List #

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/palo-alto-networks-repository-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

palo-alto-networks-repository-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact: {}
  description: 'The Repository endpoints are listed below.

    '
  title: Prisma Cloud API Overview Repository API
  version: Latest
servers: null
tags:
- name: Repository
paths:
  /code/code/api/v1/repositories/repository:
    get:
      description: 'Retrieve a single repository.

        the repository item includes: id, repoName, source, owner, isPublic, creationDate'
      operationId: getRepository
      parameters:
      - in: query
        name: repositoryId
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              examples:
                Example 1:
                  value:
                    creationDate: '2022-02-21T12:37:56.188Z'
                    defaultBranch: master
                    description: description
                    id: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
                    isPublic: false
                    owner: yourname
                    repository: foo
                    runs: 0
                    source: Github
                    url: www.example.com
              schema:
                $ref: '#/components/schemas/RepositoryResponse'
          description: repository for customer
        '422':
          description: Request arguments validation error
        '500':
          description: Could not fetch repository for customer
      security:
      - CustomAuthorizer: []
      summary: Single Repository List
      tags:
      - Repository
      x-codeSamples:
      - lang: Python + Requests
        source: 'import requests


          url = "http://undefinedundefined/code/code/api/v1/repositories/repository"


          querystring = {"repositoryId":"SOME_STRING_VALUE"}


          headers = {"authorization": "REPLACE_KEY_VALUE"}


          response = requests.request("GET", url, headers=headers, params=querystring)


          print(response.text)'
      - lang: Shell + Curl
        source: "curl --request GET \\\n  --url 'http://undefinedundefined/code/code/api/v1/repositories/repository?repositoryId=SOME_STRING_VALUE' \\\n  --header 'authorization: REPLACE_KEY_VALUE'"
components:
  schemas:
    RepositoryResponse:
      additionalProperties: false
      properties:
        description:
          type: string
        id:
          type: string
        isPublic:
          type: boolean
        name:
          type: string
        owner:
          type: string
        source:
          type: string
        url:
          type: string
      required:
      - id
      - source
      - name
      - description
      - url
      - isPublic
      - owner
      type: object
  securitySchemes:
    CustomAuthorizer:
      in: header
      name: authorization
      type: apiKey
      x-amazon-apigateway-authorizer:
        authorizerResultTtlInSeconds: 0
        authorizerUri: arn:aws:apigateway:{Region}:lambda:path/2015-03-31/functions/arn:aws:lambda:{Region}:{AccountId}:function:bc-authorization-v2-authorizer-{UniqueTag}{Alias}/invocations
        identitySource: method.request.header.authorization
        type: request
      x-amazon-apigateway-authtype: custom