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

# Verify a passport (public)

> Public verification of a Closing Passport version. `chainOk` is recomputed on every call, never a stored verdict. Malformed and unknown codes return the identical generic 404 `{"verdict": "unknown"}`.



## OpenAPI

````yaml /api-reference/openapi.json get /api/verify/room/{verifyCode}
openapi: 3.1.0
info:
  title: SignSealShip Partner API
  version: 1.0.0
  description: >-
    The SignSealShip partner API: create Verified Closing Rooms, seal Closing
    Passports and Proof Passports, and manage webhooks. Partner endpoints
    authenticate with a bearer key (`Authorization: Bearer sss_pk_...`); public
    verification endpoints need no key — possession of the verify, room, or
    order code is the authorization. See the Guides for full prose, rate limits,
    and signature verification.
  contact:
    name: SignSealShip
    url: https://signsealship.com/partner
servers:
  - url: https://signsealship.com
    description: Production
security:
  - partnerKey: []
tags:
  - name: Onboarding
    description: Request partner API access.
  - name: Closing Rooms
    description: Verified Closing Rooms — one shareable page per transaction.
  - name: Closing Passports
    description: Room-level, hash-chained, KMS-sealed evidence manifests.
  - name: Proof Passport
    description: Seal and verify a single executed PDF.
  - name: Webhooks
    description: Signed event delivery and subscription management.
paths:
  /api/verify/room/{verifyCode}:
    get:
      tags:
        - Closing Passports
      summary: Verify a passport (public)
      description: >-
        Public verification of a Closing Passport version. `chainOk` is
        recomputed on every call, never a stored verdict. Malformed and unknown
        codes return the identical generic 404 `{"verdict": "unknown"}`.
      parameters:
        - name: verifyCode
          in: path
          required: true
          schema:
            type: string
          description: The passport's 26-character verification code.
      responses:
        '200':
          description: The verified passport version and its recomputed chain state.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RoomPassportVerification'
        '404':
          description: Unknown or malformed code.
          content:
            application/json:
              schema:
                type: object
                properties:
                  verdict:
                    type: string
                    example: unknown
      security: []
components:
  schemas:
    RoomPassportVerification:
      type: object
      properties:
        manifest:
          type: object
          description: >-
            The stored canonical manifest, parsed (coverage, documents,
            passport).
        manifestSha256:
          type: string
        sealedSha256:
          type: string
        version:
          type: integer
        prevManifestSha256:
          type:
            - string
            - 'null'
        chainOk:
          type: boolean
          description: >-
            Recomputed every call: the stored manifest re-hashes to
            manifestSha256 AND the chain link is intact.
        branding:
          $ref: '#/components/schemas/Branding'
        createdAt:
          type: string
          format: date-time
        downloadUrl:
          type: string
          description: '`/api/verify/room/{verifyCode}/pdf`.'
    Branding:
      type:
        - object
        - 'null'
      properties:
        brandName:
          type:
            - string
            - 'null'
        accentColor:
          type:
            - string
            - 'null'
          description: Hex color like `#1a2b3c`.
        logoUrl:
          type:
            - string
            - 'null'
          description: Public https URL of the partner's logo.
  securitySchemes:
    partnerKey:
      type: http
      scheme: bearer
      bearerFormat: sss_pk_...
      description: 'Partner API key. Send as `Authorization: Bearer sss_pk_...`.'

````