> ## 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.

# List your orders

> List the orders created with your partner key, newest first. Rate limited with `partner-write` (60/min per key).



## OpenAPI

````yaml /api-reference/openapi.json get /api/partner/orders
openapi: 3.1.0
info:
  title: SignSealShip Partner API
  version: 1.0.0
  description: >-
    The SignSealShip partner API: create sign / notarize / ship orders, 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: Orders
    description: >-
      B2B order intake — create sign / notarize / ship orders, track them, and
      mint Stripe hosted checkout.
  - name: Sandbox
    description: >-
      Deterministic lifecycle simulation for TEST orders (sss_pk_test_ keys) —
      real state machine, real signed webhooks, no live money.
  - name: Launchpad & Analytics
    description: Your workspace's go-live checklist and tenant-scoped analytics.
  - 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/partner/orders:
    get:
      tags:
        - Orders
      summary: List your orders
      description: >-
        List the orders created with your partner key, newest first. Rate
        limited with `partner-write` (60/min per key).
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 20
          description: Page size. Default 20, maximum 100.
        - name: status
          in: query
          schema:
            type: string
          description: >-
            Filter by order status name (e.g. `QuoteReady`, `Paid`,
            `Completed`).
        - name: external_reference
          in: query
          schema:
            type: string
          description: Filter to orders created with this `external_reference`.
      responses:
        '200':
          description: Your orders.
          content:
            application/json:
              schema:
                type: object
                properties:
                  orders:
                    type: array
                    items:
                      $ref: '#/components/schemas/OrderSummary'
                  requestId:
                    type: string
                    description: This request's id — quote it in support tickets.
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    OrderSummary:
      type: object
      properties:
        orderCode:
          type: string
        status:
          type: string
        services:
          $ref: '#/components/schemas/OrderServices'
        totalCents:
          type: integer
        externalReference:
          type:
            - string
            - 'null'
        customerEmail:
          type: string
          description: The signer / client email from the create call.
        createdAt:
          type: string
          format: date-time
    OrderServices:
      type: string
      description: >-
        Which services the order includes, as a comma-separated flags string.
        Possible flags: `Sign`, `Notarize`, `Ship`, `Fax`. Parse by splitting on
        `", "` — this is NOT an object of booleans (corrected 2026-08-01; the
        schema previously mis-documented it as one).
      example: Sign, Notarize, Ship
    Error:
      type: object
      properties:
        error:
          type: string
  responses:
    Unauthorized:
      description: Missing, malformed, revoked, or unknown partner key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: A valid partner API key is required.
  securitySchemes:
    partnerKey:
      type: http
      scheme: bearer
      bearerFormat: sss_pk_...
      description: 'Partner API key. Send as `Authorization: Bearer sss_pk_...`.'

````