Dust Identity Certificates API

Generate, list, and void certificates

Operations 9

POST /api/v1/certificates/preflight Preflight a Certificate Form against a Thread. #
POST /api/v1/certificates/preflight/batch Batch preflight (read-only) for the Dice batch workflow. #
POST /api/v1/certificates/preview-form Render a Certificate Form preview with placeholder data. #
POST /api/v1/certificates/preview-form-thread Render a Certificate Form preview resolved against a Thread. #
POST /api/v1/certificates/resolve-form-values Resolve a Certificate Form's bindings against a Thread (values only, no PDF). #
POST /api/v1/certificates/generate Generate (issue) a single Certificate. #
POST /api/v1/certificates/void Void a Certificate. #
GET /api/v1/certificates List a Thread's Certificates. #
GET /api/v1/certificates/{certificateId} Get a Certificate. #

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/dust-identity-certificates-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

dust-identity-certificates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DUST Certificates API
  description: DUST Platform API
  version: 2026.7.4
servers:
- url: https://apid.dustid.io
  description: DUST API for trusted provenance.
security:
- Bearer: []
tags:
- name: Certificates
  description: Generate, list, and void certificates
paths:
  /api/v1/certificates/preflight:
    post:
      operationId: certificates.preflight
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CertificatePreflightRequest'
      summary: Preflight a Certificate Form against a Thread.
      description: 'Read-only compliance check: which bindings resolve against this Thread.'
      tags:
      - Certificates
      responses:
        '200':
          description: Preflight result.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificatePreflightResult'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: UNAUTHORIZED
                  message:
                    type: string
                  status:
                    const: 401
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '403':
          description: Feature is currently disabled
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: FEATURE_DISABLED
                  message:
                    type: string
                  status:
                    const: 403
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: NOT_FOUND
                  message:
                    type: string
                  status:
                    const: 404
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
  /api/v1/certificates/preflight/batch:
    post:
      operationId: certificates.preflight_batch
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CertificatePreflightBatchRequest'
      summary: Batch preflight (read-only) for the Dice batch workflow.
      description: Per-Thread compliance for up to 100 Threads. This is a READ, not bulk issuance.
      tags:
      - Certificates
      responses:
        '200':
          description: Per-Thread preflight results.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CertificatePreflightResult'
        '400':
          description: Invalid Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: INVALID_REQUEST
                  message:
                    type: string
                  status:
                    const: 400
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '403':
          description: Feature is currently disabled
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: FEATURE_DISABLED
                  message:
                    type: string
                  status:
                    const: 403
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: NOT_FOUND
                  message:
                    type: string
                  status:
                    const: 404
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
  /api/v1/certificates/preview-form:
    post:
      operationId: certificates.preview_form
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CertificatePreviewFormRequest'
      summary: Render a Certificate Form preview with placeholder data.
      description: Server-side render of a (possibly unsaved) design with sample values; returns the PDF as base64.
      tags:
      - Certificates
      responses:
        '200':
          description: Base64-encoded preview PDF.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificatePreviewFormResponse'
        '400':
          description: Invalid data provided
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: INVALID_DATA
                  message:
                    type: string
                  status:
                    const: 400
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '403':
          description: Feature is currently disabled
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: FEATURE_DISABLED
                  message:
                    type: string
                  status:
                    const: 403
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
  /api/v1/certificates/preview-form-thread:
    post:
      operationId: certificates.preview_form_for_thread
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CertificatePreviewFormForThreadRequest'
      summary: Render a Certificate Form preview resolved against a Thread.
      description: Server-side render of a (possibly unsaved) design with values resolved against a Thread (same resolution as issuance preflight); returns the PDF as base64 plus the preflight gap list. Requires can_view on the Thread.
      tags:
      - Certificates
      responses:
        '200':
          description: Base64-encoded preview PDF + preflight.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificatePreviewFormForThreadResponse'
        '400':
          description: Invalid data provided
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: INVALID_DATA
                  message:
                    type: string
                  status:
                    const: 400
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: UNAUTHORIZED
                  message:
                    type: string
                  status:
                    const: 401
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '403':
          description: Feature is currently disabled
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: FEATURE_DISABLED
                  message:
                    type: string
                  status:
                    const: 403
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: NOT_FOUND
                  message:
                    type: string
                  status:
                    const: 404
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
  /api/v1/certificates/resolve-form-values:
    post:
      operationId: certificates.resolve_form_values
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CertificateResolveFormValuesRequest'
      summary: Resolve a Certificate Form's bindings against a Thread (values only, no PDF).
      description: Resolves a (possibly unsaved) design's bindings against a Thread using the same resolution as issuance preflight, and returns the per-zone renderable values (text + inline image data URLs) for the Live Design Canvas. No PDF is rendered. Requires can_view on the Thread.
      tags:
      - Certificates
      responses:
        '200':
          description: Per-zone resolved values.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificateResolveFormValuesResponse'
        '400':
          description: Invalid Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: INVALID_REQUEST
                  message:
                    type: string
                  status:
                    const: 400
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: UNAUTHORIZED
                  message:
                    type: string
                  status:
                    const: 401
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '403':
          description: Feature is currently disabled
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: FEATURE_DISABLED
                  message:
                    type: string
                  status:
                    const: 403
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: NOT_FOUND
                  message:
                    type: string
                  status:
                    const: 404
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
  /api/v1/certificates/generate:
    post:
      operationId: certificates.generate
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CertificateGenerateRequest'
      summary: Generate (issue) a single Certificate.
      description: Render the PDF, compute its SHA-256, enforce the same-Thread duplicate-checksum guard, and store the immutable Certificate. Requires can_edit on the Thread.
      tags:
      - Certificates
      responses:
        '200':
          description: The issued Certificate.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificateResponse'
        '400':
          description: Invalid data provided
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: INVALID_DATA
                  message:
                    type: string
                  status:
                    const: 400
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: UNAUTHORIZED
                  message:
                    type: string
                  status:
                    const: 401
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '403':
          description: Feature is currently disabled
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: FEATURE_DISABLED
                  message:
                    type: string
                  status:
                    const: 403
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: NOT_FOUND
                  message:
                    type: string
                  status:
                    const: 404
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
  /api/v1/certificates/void:
    post:
      operationId: certificates.void
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CertificateVoidRequest'
      summary: Void a Certificate.
      description: Mark an issued Certificate as voided (owner-team admin only). Internal lifecycle status in R1.
      tags:
      - Certificates
      responses:
        '200':
          description: The voided Certificate.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificateResponse'
        '400':
          description: Invalid Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: INVALID_REQUEST
                  message:
                    type: string
                  status:
                    const: 400
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: UNAUTHORIZED
                  message:
                    type: string
                  status:
                    const: 401
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '403':
          description: Feature is currently disabled
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: FEATURE_DISABLED
                  message:
                    type: string
                  status:
                    const: 403
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: NOT_FOUND
                  message:
                    type: string
                  status:
                    const: 404
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
  /api/v1/certificates:
    get:
      operationId: certificates.list
      parameters:
      - in: query
        name: threadId
        schema:
          anyOf:
          - type: string
            description: a UUID
            format: uuid
            pattern: '[\da-f]{8}-[\da-f]{4}-[1-8][\da-f]{3}-[89ab][\da-f]{3}-[\da-f]{12}'
          - const: 00000000-0000-0000-0000-000000000000
            description: a UUID
            format: uuid
          - const: ffffffff-ffff-ffff-ffff-ffffffffffff
            description: a UUID
            format: uuid
          format: uuid
        required: true
        description: a UUID
      - in: query
        name: includeVoided
        schema:
          anyOf:
          - enum:
            - 'false'
            - 'true'
          - type: boolean
      summary: List a Thread's Certificates.
      description: List a Thread's Certificates. Includes voided Certificates by default; pass includeVoided=false to return only issued ones. Follows Thread can_view.
      tags:
      - Certificates
      responses:
        '200':
          description: Certificates.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CertificateResponse'
        '400':
          description: Invalid Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: INVALID_REQUEST
                  message:
                    type: string
                  status:
                    const: 400
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: UNAUTHORIZED
                  message:
                    type: string
                  status:
                    const: 401
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '403':
          description: Feature is currently disabled
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: FEATURE_DISABLED
                  message:
                    type: string
                  status:
                    const: 403
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
  /api/v1/certificates/{certificateId}:
    get:
      operationId: certificates.get
      summary: Get a Certificate.
      tags:
      - Certificates
      responses:
        '200':
          description: The Certificate.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificateResponse'
        '403':
          description: Feature is currently disabled
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: FEATURE_DISABLED
                  message:
                    type: string
                  status:
                    const: 403
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    const: NOT_FOUND
                  message:
                    type: string
                  status:
                    const: 404
                  detail:
                    type: object
                    description: Extra context information specific to this error
                required:
                - code
                - message
                - status
      parameters:
      - schema:
          type: string
        in: path
        name: certificateId
        required: true
components:
  schemas:
    CertificateResolveFormValuesResponse:
      type: object
      properties:
        zones:
          type: array
          items:
            $ref: '#/components/schemas/CertificateResolvedZone'
      required:
      - zones
    CertificatePreviewFormForThreadResponse:
      type: object
      properties:
        pdfBase64:
          type: string
        preflight:
          $ref: '#/components/schemas/CertificatePreviewPreflight'
      required:
      - pdfBase64
      - preflight
    CertificateResolveFormValuesRequest:
      type: object
      properties:
        bindings:
          type: array
          items:
            anyOf:
            - type: object
              properties:
                kind:
                  enum:
                  - boolean
                  - date
                  - image
                  - number
                  - text
                primaryName:
                  type: string
                required:
                  type: boolean
                source:
                  const: field
                zoneId:
                  type: string
                aliases:
                  type: array
                  items:
                    type: string
                dateFormat:
                  type: string
                format:
                  type: object
                  properties:
                    align:
                      enum:
                      - center
                      - left
                      - right
                    backgroundColor:
                      type: string
                    barColor:
                      type: string
                    fontColor:
                      type: string
                    fontName:
                      type: string
                    fontSize:
                      type: number
                    opacity:
                      type: number
                    rotate:
                      type: number
                    showText:
                      type: boolean
                renderAs:
                  enum:
                  - code128
                  - code39
                  - pdf417
                  - qrcode
                  - text
                systemAliases:
                  type: array
                  items:
                    enum:
                    - certificate.issueDate
                    - issuer.familyName
                    - issuer.firstName
                    - issuer.fullName
                    - issuer.teamName
                    - thread.description
                    - thread.identifiers
                    - thread.name
                    - thread.thumbnail
                    - thread.uuid
              required:
              - kind
              - primaryName
              - required
              - source
              - zoneId
            - type: object
              properties:
                required:
                  type: boolean
                source:
                  const: static
                staticKind:
                  const: text
                text:
                  type: string
                zoneId:
                  type: string
                format:
                  type: object
                  properties:
                    align:
                      enum:
                      - center
                      - left
                      - right
                    backgroundColor:
                      type: string
                    barColor:
                      type: string
                    fontColor:
                      type: string
                    fontName:
                      type: string
                    fontSize:
                      type: number
                    opacity:
                      type: number
                    rotate:
                      type: number
                    showText:
                      type: boolean
                renderAs:
                  enum:
                  - code128
                  - code39
                  - pdf417
                  - qrcode
                  - text
              required:
              - required
              - source
              - staticKind
              - text
              - zoneId
            - type: object
              properties:
                required:
                  type: boolean
                source:
                  const: system
                systemKey:
                  enum:
                  - certificate.issueDate
                  - issuer.familyName
                  - issuer.firstName
                  - issuer.fullName
                  - issuer.teamName
                  - thread.description
                  - thread.identifiers
                  - thread.name
                  - thread.thumbnail
                  - thread.uuid
                zoneId:
                  type: string
                dateFormat:
                  type: string
                format:
                  type: object
                  properties:
                    align:
                      enum:
                      - center
                      - left
                      - right
                    backgroundColor:
                      type: string
                    barColor:
                      type: string
                    fontColor:
                      type: string
                    fontName:
                      type: string
                    fontSize:
                      type: number
                    opacity:
                      type: number
                    rotate:
                      type: number
                    showText:
                      type: boolean
                renderAs:
                  enum:
                  - code128
                  - code39
                  - pdf417
                  - qrcode
                  - text
              required:
              - required
              - source
              - systemKey
              - zoneId
        threadId:
          anyOf:
          - type: string
            description: a UUID
            format: uuid
            pattern: '[\da-f]{8}-[\da-f]{4}-[1-8][\da-f]{3}-[89ab][\da-f]{3}-[\da-f]{12}'
          - const: 00000000-0000-0000-0000-000000000000
            description: a UUID
            format: uuid
          - const: ffffffff-ffff-ffff-ffff-ffffffffffff
            description: a UUID
            format: uuid
          description: a UUID
          format: uuid
        teamName:
          type: string
      required:
      - bindings
      - threadId
    CertificatePreflightResult:
      type: object
      properties:
        bindings:
          type: array
          items:
            type: object
            properties:
              label:
                type: string
              matchedFieldName:
                anyOf:
                - type: string
                - type: 'null'
              message:
                anyOf:
                - type: string
                - type: 'null'
              nonExact:
                type: boolean
              required:
                type: boolean
              source:
                enum:
                - field
                - static
                - system
              status:
                enum:
                - ambiguous
                - empty
                - missing
                - resolved
                - type_mismatch
                - unencodable
              zoneId:
                type: string
            required:
            - label
            - matchedFieldName
            - message
    

# --- truncated at 32 KB (58 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/dust-identity/refs/heads/main/openapi/dust-identity-certificates-api-openapi.yml