Skip to main content
GET
Get Attestation Report
Returns the gateway’s attestation report: the hardware-backed proof of which TEE workload is serving the API, plus the public keys it signs with. Verify this report before trusting any receipt. For what each field proves, see Attestation report.

Request

string
A fresh random value (for example 16 bytes hex). The gateway binds it into the quote’s report_data so you can prove the report is not a replay.

Response

200 OK, application/json. The bare attestation report.

Top-level fields

attestation object

Example (long values truncated)

Verifying the report

  1. Verify attestation.evidence.quote against Intel DCAP collateral, and confirm its report data binds your nonce and the workload_keyset.
  2. Verify keyset_endorsement under workload_keyset.workload_identity.
  3. Confirm workload_id and workload_keyset_digest match the receipts you verify.
  4. Confirm freshness.stale_after is in the future.
  5. In production, confirm source_provenance matches the reviewed release.
The end-to-end procedure is in Verify a response.

Legacy alias

GET /v1/attestation/report is a legacy compatibility alias for this endpoint, documented under Attestation Report.

Get receipt

The signed per-response receipt.

Attestation report concept

What each field proves.