Skip to main content

Documentation Index

Fetch the complete documentation index at: https://turnkey-0e7c1f5b-brianesler-finalized-webhooks-docs-update.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

organizationId
string
required
Unique identifier for a given Organization.
ephemeralKey
string
required
Hex encoded ephemeral public key.
A successful response returns the following fields:
bootProof
object
required
bootProof field
curl --request POST \
  --url https://api.turnkey.com/public/v1/query/get_boot_proof \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>",
    "ephemeralKey": "<string>"
}'
{
  "bootProof": {
    "ephemeralPublicKeyHex": "<string>",
    "awsAttestationDocB64": "<string>",
    "qosManifestB64": "<string>",
    "qosManifestEnvelopeB64": "<string>",
    "deploymentLabel": "<string>",
    "enclaveApp": "<string>",
    "owner": "<string>",
    "createdAt": {
      "seconds": "<string>",
      "nanos": "<string>"
    },
    "qosManifestVersion": "<string>"
  }
}