> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ilyama.golain.io/llms.txt
> Use this file to discover all available pages before exploring further.

# OCSP responder (RFC 5019 base64url path segment)



## OpenAPI

````yaml /api-reference/ilyama.v1.json get /ocsp/{b64}
openapi: 3.1.0
info:
  description: >
    Generation-ready starter contract for ilyama's HTTP API.

    This is intentionally scoped to stable routes already mounted in
    services/apis

    so frontend clients can begin integrating against the rewrite immediately.
  title: ilyama Core API
  version: 0.1.0
servers:
  - url: /core/api/v1
security:
  - bearerAuth: []
tags:
  - name: Certificates (HTTP)
  - name: Device JITR
  - name: Device RPC
  - name: Devices
  - name: Edge replication
  - name: Fleets
  - name: Integrations
  - name: MDM
  - name: Notification Event Registry
  - name: Notifications
  - name: OTA
  - name: Observability & data
  - name: Organizations
  - name: Project settings
  - name: Projects
  - name: Projects — Email Templates
  - name: Projects — Notification Subscriptions
  - name: Projects — Status
  - name: System
  - name: Tickets & workflows
  - name: Webhooks
paths:
  /ocsp/{b64}:
    get:
      tags:
        - Certificates (HTTP)
      summary: OCSP responder (RFC 5019 base64url path segment)
      operationId: getOcsp
      parameters:
        - in: path
          name: b64
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/ocsp-response:
              schema:
                format: binary
                type: string
          description: OCSP response DER
        '404':
          description: Unknown certificate serial
        '503':
          description: Cached OCSP not yet populated
      security: []
components:
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http

````