AI CER Creation

    POST /v1/cer/ai/create

    Coming Soon

    This endpoint is under development. It will accept an AI execution snapshot and return a Certified Execution Record (CER) with a deterministic hash.

    Intended Request

    POST /v1/cer/ai/create
    Content-Type: application/json
    Authorization: Bearer <api-key>
    
    {
      "snapshot": { ... },
      "app_id": "your-app-id"
    }

    Intended Response

    {
      "cer_id": "...",
      "certificate_hash": "sha256:...",
      "execution_id": "...",
      "status": "created"
    }

    Request and response schemas are preliminary and subject to change before release.