Pandium Builds API

Create builds for integrations from source control; a build can then be used to create a release.

Operations 1

POST /v2/sourcecontrol/build Create Build V2 #

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/pandium-builds-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

pandium-builds-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Pandium Builds API
  description: The Pandium Builds API lets B2B SaaS companies create builds for their integrations from source control
    on the Pandium platform. A build can then be used to create a release. Operations harvested verbatim from the
    provider-published OpenAPI fragments embedded in https://docs.pandium.com/reference/pandium-api.
  version: 2.0.0
  contact:
    name: Pandium
    url: https://www.pandium.com/
  license:
    name: Proprietary
    url: https://www.pandium.com/terms-and-conditions
  termsOfService: https://www.pandium.com/terms-and-conditions
servers:
- url: https://api.pandium.io
  description: Production
- url: https://api.sandbox.pandium.com
  description: Sandbox
security:
- apiKey: []
tags:
- name: Builds
  description: Create builds for integrations from source control on the Pandium platform.
paths:
  /v2/sourcecontrol/build:
    post:
      tags:
      - Builds
      summary: Create Build V2
      description: Create a build for an integration.
      operationId: create_build_v2_v2_sourcecontrol_build_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateBuild'
              description: build payload
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Unprocessable Content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessage'
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-KEY
      description: 'API key generated from the Settings sidebar in the Pandium Integration Hub under the API Access
        tab. Attach it to requests in the X-API-KEY header. Source: https://docs.pandium.com/reference/pandium-api'
  schemas:
    CreateBuild:
      properties:
        tag:
          type: string
          title: Tag
          description: The tag to associate with the build
        integration_id:
          type: integer
          title: Integration Id
          description: The ID of the integration to build against
        branch:
          anyOf:
          - type: string
          - type: 'null'
          title: Branch
          description: The branch to build from. Defaults to the integration tracking branch if not provided.
      type: object
      required:
      - tag
      - integration_id
      title: CreateBuild
    ErrorMessage:
      properties:
        message:
          type: string
          title: Message
      type: object
      required:
      - message
      title: ErrorMessage