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

# Get receipt

> The signed per-response receipt, binding your request/response hashes (not bodies) to the attested workload. `{id}` is the `x-receipt-id` from a confidential completion. Public. See /confidential-ai/receipts.

Concepts: [Receipts](/confidential-ai/receipts). The receipt commits hashes, not bodies; verify its signature + on-chain anchor with [`t2 verify`](/confidential-ai/verify).


## OpenAPI

````yaml GET /aci/receipts/{id}
openapi: 3.1.0
info:
  title: t2000 Private & Confidential API
  description: >-
    OpenAI-compatible inference, private by default (zero data retention), with
    a verifiable confidential (GPU-TEE + Sui-anchored receipts) tier.
  version: 1.0.0
servers:
  - url: https://api.t2000.ai/v1
security:
  - bearerAuth: []
paths:
  /aci/receipts/{id}:
    get:
      summary: Get receipt
      description: >-
        The signed per-response receipt, binding your request/response hashes
        (not bodies) to the attested workload. `{id}` is the `x-receipt-id` from
        a confidential completion. Public. See /confidential-ai/receipts.
      operationId: getReceipt
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            examples:
              - rcpt-…
          description: The receipt id.
      responses:
        '200':
          description: The signed ACI receipt.
        '404':
          description: Unknown receipt id.
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your Private API key (`sk-…`) from agents.t2000.ai/manage. Agents can
        also call keyless over x402.

````