UML

UML Diagrams API

Generate diagrams from textual descriptions

Operations 7

GET /{diagram_type}/{output_format}/{encoded_diagram} Get Diagram via GET #
POST /{diagram_type}/{output_format} Post Diagram for Rendering #
GET /png/{encoded} Get Diagram as PNG #
GET /svg/{encoded} Get Diagram as SVG #
GET /txt/{encoded} Get Diagram as ASCII Art #
GET /pdf/{encoded} Get Diagram as PDF #
GET /map/{encoded} Get Diagram HTML Image Map #

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/uml-diagrams-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

uml-diagrams-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Uml Diagrams API
  version: 1.0.0
  description: 'Operations tagged Diagrams across 2 of this provider''s published API definitions: kroki-openapi.yml, plantuml-server-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://kroki.io
  description: Public Kroki API
- url: https://www.plantuml.com/plantuml
  description: Public PlantUML Server
tags:
- name: Diagrams
  description: Generate diagrams from textual descriptions
paths:
  /{diagram_type}/{output_format}/{encoded_diagram}:
    get:
      operationId: getDiagramGet
      summary: Get Diagram via GET
      description: Generates a diagram from an encoded source using a GET request. The diagram source must be compressed with deflate and encoded in base64url format. The diagram type and output format are specified in the URL path.
      tags:
      - Diagrams
      parameters:
      - name: diagram_type
        in: path
        required: true
        description: 'The type of diagram to generate. Supported types: plantuml, mermaid, graphviz, blockdiag, seqdiag, actdiag, nwdiag, packetdiag, rackdiag, bpmn, bytefield, c4plantuml, d2, dbml, ditaa, erd, excalidraw, nomnoml, pikchr, structurizr, svgbob, symbolator, tikz, umlet, vega, vega-lite, wavedrom, wireviz'
        schema:
          type: string
          enum:
          - plantuml
          - mermaid
          - graphviz
          - blockdiag
          - seqdiag
          - actdiag
          - nwdiag
          - packetdiag
          - rackdiag
          - bpmn
          - bytefield
          - c4plantuml
          - d2
          - dbml
          - ditaa
          - erd
          - excalidraw
          - nomnoml
          - pikchr
          - structurizr
          - svgbob
          - symbolator
          - tikz
          - umlet
          - vega
          - vega-lite
          - wavedrom
          - wireviz
      - name: output_format
        in: path
        required: true
        description: 'Output format for the diagram. Supported formats: svg, png, jpeg, pdf (availability depends on diagram type)'
        schema:
          type: string
          enum:
          - svg
          - png
          - jpeg
          - pdf
      - name: encoded_diagram
        in: path
        required: true
        description: Deflate + base64url encoded diagram source text
        schema:
          type: string
      responses:
        '200':
          description: Generated diagram in the requested output format
          content:
            image/svg+xml:
              schema:
                type: string
            image/png:
              schema:
                type: string
                format: binary
            image/jpeg:
              schema:
                type: string
                format: binary
            application/pdf:
              schema:
                type: string
                format: binary
        '400':
          description: Bad request — invalid diagram type, format, or source
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    servers:
    - url: https://kroki.io
      description: Public Kroki API
  /{diagram_type}/{output_format}:
    post:
      operationId: postDiagram
      summary: Post Diagram for Rendering
      description: Generates a diagram from a plain-text source using a POST request. The diagram source is sent in the request body. Supports plain text (text/plain) or JSON (application/json) with a "diagram_source" key. The output format is specified in the URL path.
      tags:
      - Diagrams
      parameters:
      - name: diagram_type
        in: path
        required: true
        description: 'The type of diagram to generate. Supported types: plantuml, mermaid, graphviz, blockdiag, seqdiag, actdiag, nwdiag, bpmn, c4plantuml, d2, ditaa, erd, excalidraw, nomnoml, structurizr, svgbob, umlet, vega, vega-lite, wavedrom, wireviz'
        schema:
          type: string
      - name: output_format
        in: path
        required: true
        description: Output format for the diagram (svg, png, jpeg, pdf)
        schema:
          type: string
          enum:
          - svg
          - png
          - jpeg
          - pdf
      requestBody:
        required: true
        content:
          text/plain:
            schema:
              type: string
              description: Plain text diagram source
          application/json:
            schema:
              $ref: '#/components/schemas/DiagramRequest'
      responses:
        '200':
          description: Generated diagram in the requested output format
          content:
            image/svg+xml:
              schema:
                type: string
            image/png:
              schema:
                type: string
                format: binary
            image/jpeg:
              schema:
                type: string
                format: binary
            application/pdf:
              schema:
                type: string
                format: binary
        '400':
          description: Bad request — invalid diagram type, format, or source
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    servers:
    - url: https://kroki.io
      description: Public Kroki API
  /png/{encoded}:
    get:
      operationId: getDiagramPng
      summary: Get Diagram as PNG
      description: Renders a PlantUML diagram as a PNG image. The encoded parameter is the PlantUML source compressed with deflate and encoded in base64url.
      tags:
      - Diagrams
      parameters:
      - name: encoded
        in: path
        required: true
        description: Deflate + base64url encoded PlantUML source
        schema:
          type: string
      responses:
        '200':
          description: PNG image of the rendered diagram
          content:
            image/png:
              schema:
                type: string
                format: binary
        '400':
          description: Invalid or malformed encoded diagram source
    servers:
    - url: https://www.plantuml.com/plantuml
      description: Public PlantUML Server
  /svg/{encoded}:
    get:
      operationId: getDiagramSvg
      summary: Get Diagram as SVG
      description: Renders a PlantUML diagram as an SVG image. The encoded parameter is the PlantUML source compressed with deflate and encoded in base64url.
      tags:
      - Diagrams
      parameters:
      - name: encoded
        in: path
        required: true
        description: Deflate + base64url encoded PlantUML source
        schema:
          type: string
      responses:
        '200':
          description: SVG image of the rendered diagram
          content:
            image/svg+xml:
              schema:
                type: string
        '400':
          description: Invalid or malformed encoded diagram source
    servers:
    - url: https://www.plantuml.com/plantuml
      description: Public PlantUML Server
  /txt/{encoded}:
    get:
      operationId: getDiagramAscii
      summary: Get Diagram as ASCII Art
      description: Renders a PlantUML diagram as ASCII art text. Useful for text-only environments or embedding in documentation.
      tags:
      - Diagrams
      parameters:
      - name: encoded
        in: path
        required: true
        description: Deflate + base64url encoded PlantUML source
        schema:
          type: string
      responses:
        '200':
          description: ASCII art text representation of the diagram
          content:
            text/plain:
              schema:
                type: string
        '400':
          description: Invalid or malformed encoded diagram source
    servers:
    - url: https://www.plantuml.com/plantuml
      description: Public PlantUML Server
  /pdf/{encoded}:
    get:
      operationId: getDiagramPdf
      summary: Get Diagram as PDF
      description: Renders a PlantUML diagram as a PDF document.
      tags:
      - Diagrams
      parameters:
      - name: encoded
        in: path
        required: true
        description: Deflate + base64url encoded PlantUML source
        schema:
          type: string
      responses:
        '200':
          description: PDF document of the rendered diagram
          content:
            application/pdf:
              schema:
                type: string
                format: binary
        '400':
          description: Invalid or malformed encoded diagram source
    servers:
    - url: https://www.plantuml.com/plantuml
      description: Public PlantUML Server
  /map/{encoded}:
    get:
      operationId: getDiagramImageMap
      summary: Get Diagram HTML Image Map
      description: Returns an HTML image map for the diagram, enabling clickable areas on diagrams rendered as PNG.
      tags:
      - Diagrams
      parameters:
      - name: encoded
        in: path
        required: true
        description: Deflate + base64url encoded PlantUML source
        schema:
          type: string
      responses:
        '200':
          description: HTML image map for the diagram
          content:
            text/plain:
              schema:
                type: string
        '400':
          description: Invalid or malformed encoded diagram source
    servers:
    - url: https://www.plantuml.com/plantuml
      description: Public PlantUML Server
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message describing what went wrong
        status_code:
          type: integer
          description: HTTP status code
    DiagramRequest:
      type: object
      required:
      - diagram_source
      properties:
        diagram_source:
          type: string
          description: The plain text source of the diagram to render
        diagram_options:
          type: object
          description: Optional rendering options specific to the diagram type
          additionalProperties: true
x-refined-from:
- kroki-openapi.yml
- plantuml-server-openapi.yml