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

> The attested-session record a receipt references (`upstream.verified.session_id`): the verified upstream channel, its binding, typed TCB claims, and evidence. Public. See /confidential-ai/attested-sessions.

Concepts: [Attested sessions & claims](/confidential-ai/attested-sessions). Resolve a receipt's `upstream.verified.session_id` to its verified channel, binding, and typed TCB claims.


## OpenAPI

````yaml GET /aci/sessions/{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/sessions/{id}:
    get:
      summary: Get session
      description: >-
        The attested-session record a receipt references
        (`upstream.verified.session_id`): the verified upstream channel, its
        binding, typed TCB claims, and evidence. Public. See
        /confidential-ai/attested-sessions.
      operationId: getSession
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            examples:
              - as_…
          description: The attested-session id.
      responses:
        '200':
          description: The attested-session record.
        '404':
          description: Unknown session 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.

````