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

# List Receipts

> Returns the most recent receipts for the authenticated tenant ordered by seq DESC. Does NOT verify ED25519 signatures per row — call GET /v1/receipts/:id to verify a specific receipt. Use `cursor` (seq from the previous page) for cursor pagination.



## OpenAPI

````yaml GET /v1/receipts
openapi: 3.0.0
info:
  title: Wardin API
  description: AI governance & observability platform — external REST API
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/receipts:
    get:
      tags:
        - receipts
      summary: List recent receipts (newest first)
      description: >-
        Returns the most recent receipts for the authenticated tenant ordered by
        seq DESC. Does NOT verify ED25519 signatures per row — call GET
        /v1/receipts/:id to verify a specific receipt. Use `cursor` (seq from
        the previous page) for cursor pagination.
      operationId: ReceiptsController_listReceipts
      parameters:
        - name: limit
          required: false
          in: query
          schema:
            example: 25
            type: number
        - name: cursor
          required: false
          in: query
          description: Exclusive seq upper bound for the next page
          schema:
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecentReceiptListDto'
      security:
        - bearer: []
components:
  schemas:
    RecentReceiptListDto:
      type: object
      properties:
        receipts:
          type: array
          items:
            $ref: '#/components/schemas/RecentReceiptEntryDto'
        nextCursor:
          type: object
          example: 40
          nullable: true
          description: >-
            Seq of the last returned receipt — pass as `cursor` to fetch the
            next page. null when this is the last page.
      required:
        - receipts
        - nextCursor
    RecentReceiptEntryDto:
      type: object
      properties:
        seq:
          type: number
          example: 42
        receiptId:
          type: string
          example: 018f1234-5678-7abc-def0-123456789abc
        requestId:
          type: string
          example: req-abc-123
        actor:
          type: string
          example: user@example.com
        provider:
          type: string
          example: anthropic
        model:
          type: string
          example: claude-3-5-sonnet-20241022
        promptTokens:
          type: number
          example: 1000
        completionTokens:
          type: number
          example: 250
        costUsd:
          type: number
          example: 0.00375
        checks:
          type: array
          items:
            $ref: '#/components/schemas/ReceiptCheckDto'
        ts:
          type: string
          example: '2026-07-02 12:00:00.000'
      required:
        - seq
        - receiptId
        - requestId
        - actor
        - provider
        - model
        - promptTokens
        - completionTokens
        - costUsd
        - checks
        - ts
    ReceiptCheckDto:
      type: object
      properties:
        name:
          type: string
          example: policy
        result:
          type: string
          example: allow
      required:
        - name
        - result
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````