Remberg procedure-templates API

The procedure-templates API from Remberg — 1 operation(s) for procedure-templates.

Operations 1

GET /v1/procedures/templates Get a list of Procedure Templates #

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/remberg-procedure-templates-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

remberg-procedure-templates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AI ai-chat Procedure Templates API
  description: The remberg AI API description
  version: v1
  contact: {}
servers:
- url: https://api.remberg.de
tags:
- name: procedure-templates
paths:
  /v1/procedures/templates:
    get:
      description: Returns a paginated list of Procedure Templates. Supports filtering via query parameters.
      operationId: /v1/procedures/templates_get
      parameters:
      - name: page
        required: false
        in: query
        description: Page number.
        schema:
          default: 0
          type: number
      - name: limit
        required: false
        in: query
        description: Define how many items will be received in the payload per request. (default 20 items, max 1000 items)
        schema:
          default: 20
          type: number
      - name: search
        required: false
        in: query
        description: Filter by specifying a search phrase over the procedure template's name or counter.
        schema:
          type: string
      - name: type
        required: false
        in: query
        description: Filter by procedure template type.
        schema:
          type: string
          enum:
          - safetyCheck
          - maintenance
          - validation
      responses:
        '200':
          description: List of Procedure Template objects
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProcedureTemplateCfaFindManyResponseDto'
        '400':
          description: Bad Request
        '403':
          description: Forbidden
      security:
      - authorization: []
      summary: Get a list of Procedure Templates
      tags:
      - procedure-templates
      x-controller-class: ProcedureTemplatesCfaController
components:
  schemas:
    ProcedureTemplateListItemCfaResponseDto:
      type: object
      properties:
        id:
          type: string
          description: The procedure template's internal ID
        counter:
          type: number
          description: The procedure template's counter
        name:
          type: string
          description: The procedure template's name
        type:
          type: string
          enum:
          - safetyCheck
          - maintenance
          - validation
          description: The procedure template's type
        description:
          type: string
          description: The procedure template's description
        createdAt:
          type: string
          format: date-time
          description: The procedure template's creation date as an ISO UTC string
          example: '2025-01-15T10:00:00.000Z'
        updatedAt:
          type: string
          format: date-time
          description: The procedure template's date of the last update as an ISO UTC string
          example: '2025-01-15T10:00:00.000Z'
      required:
      - id
      - counter
      - name
      - type
      - createdAt
      - updatedAt
    ProcedureTemplateCfaFindManyResponseDto:
      type: object
      properties:
        data:
          description: The list of procedure templates
          type: array
          items:
            $ref: '#/components/schemas/ProcedureTemplateListItemCfaResponseDto'
      required:
      - data
  securitySchemes:
    authorization:
      type: apiKey
      in: header
      name: authorization