PassiveLogic Bindings API

Routes related to Binding management.

Operations 2

POST /api/v0.20/binding Uploads a file associated with a binding. #
POST /api/binding Uploads a file associated with a binding. #

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/passivelogic-bindings-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

passivelogic-bindings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Passivelogic Bindings API
  version: 0.0.0
  description: 'Operations tagged Bindings across 2 of this provider''s published API definitions: passivelogic-bindings-api-openapi.yml, passivelogic-rest-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://passivelogic.com/api/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- description: Routes related to Binding management.
  name: Bindings
paths:
  /api/v0.20/binding:
    post:
      security:
      - Basic Auth - login: []
      - XSRF header: []
      - DEPRECATED - PL API Key: []
      - PL API Key: []
      requestBody:
        content:
          multipart/form-data:
            examples:
              UploadFileData:
                $ref: '#/components/examples/UploadFileData'
            schema:
              $ref: '#/components/schemas/UploadFileData'
          application/json:
            examples:
              UploadFileData:
                $ref: '#/components/examples/UploadFileData'
            schema:
              $ref: '#/components/schemas/UploadFileData'
        required: true
      summary: Uploads a file associated with a binding.
      tags:
      - Bindings
      description: 'Uploads a file to the server and associates that file with a binding node, setting its new stored URL & checksum in the

        database. The data may be sent in either multipart/form-data or JSON format. If using JSON, the image file must be

        Base64-encoded. Using multipart/form-data is recommended as it is a more efficient way to transmit binary data.'
      operationId: postApiV0.20Binding
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BindingUploadResponse'
              examples:
                BindingUploadResponse:
                  $ref: '#/components/examples/BindingUploadResponse'
          description: OK
    servers:
    - url: https://passivelogic.com/api/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /api/binding:
    post:
      security:
      - Basic Auth - login: []
      - XSRF header: []
      - DEPRECATED - PL API Key: []
      - PL API Key: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UploadFileData'
            examples:
              UploadFileData:
                $ref: '#/components/examples/UploadFileData'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/UploadFileData'
            examples:
              UploadFileData:
                $ref: '#/components/examples/UploadFileData'
        required: true
      summary: Uploads a file associated with a binding.
      tags:
      - Bindings
      description: 'Uploads a file to the server and associates that file with a binding node, setting its new stored URL & checksum in the

        database. The data may be sent in either multipart/form-data or JSON format. If using JSON, the image file must be

        Base64-encoded. Using multipart/form-data is recommended as it is a more efficient way to transmit binary data.'
      responses:
        '200':
          description: OK
          content:
            application/json:
              examples:
                BindingUploadResponse:
                  $ref: '#/components/examples/BindingUploadResponse'
              schema:
                $ref: '#/components/schemas/BindingUploadResponse'
      operationId: postApiBinding
    servers:
    - url: https://passivelogic.com/api/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  examples:
    BindingUploadResponse:
      value:
        message: Binding object was successfully updated.
        url: https://passivelogic.com/binding/497E362B-AB0B-4013-AE38-86DB09A013AA
    UploadFileData:
      value:
        file: PHN2ZyBoZWlnaHQ9IjI0IiB3aWR0aD0iMjQiPjxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjQwIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjMiIGZpbGw9ImJsdWUiIC8+PC9zdmc+
        ID: FF5BFAAC-B65A-443D-8A0C-904A38C904E9
        fileType: svg
  schemas:
    BindingUploadResponse:
      properties:
        url:
          type:
          - string
          - 'null'
        message:
          type: string
          description: Informative message relating to binding upload. Updated binding url with cache bust.
      required:
      - message
      description: Binding response definition
      type: object
    UploadFileData:
      properties:
        ID:
          type: string
          description: UUID of the quantum binding node that you want to associate this file with.
          format: uuid
        filePath:
          type:
          - string
          - 'null'
        file:
          type: string
          description: File data to write to the server.
          format: byte
        fileType:
          type: string
          description: The type of file the given data represents.
      required:
      - ID
      - file
      - fileType
      description: Data required to upload a file binding.
      type: object
  securitySchemes:
    XSRF_header:
      in: header
      description: Authentication using an XSRF protected JWT
      name: X-PL-AUTH
      type: apiKey
    Basic_Auth_-_login:
      description: Basic authentication used only at login.
      scheme: basic
      type: http
    PL_API_Key:
      in: header
      description: PL API Key in header
      name: PL-API-KEY
      type: apiKey
    DEPRECATED_-_PL_API_Key:
      in: header
      description: DEPRECATED - PL API Key in Bearer header
      name: 'Authorization: PL-API-KEY'
      type: apiKey
x-refined-from:
- passivelogic-bindings-api-openapi.yml
- passivelogic-rest-api-openapi.yml