Documentation Index
Fetch the complete documentation index at: https://turnkey-0e7c1f5b-amir-tx-status-webhooks.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API Key
WebAuthn (Passkey)
Cryptographically signed (stamped) request to be passed in as a header. For more info, see
here.
Cryptographically signed (stamped) request to be passed in as a header. For more info, see
here.
Body
Unique identifier for a given Organization.
Unique identifier for a given activity.
Response
A successful response returns the following fields:
appProofs field
scheme fieldEnum options: SIGNATURE_SCHEME_EPHEMERAL_KEY_P256
JSON serialized AppProofPayload.
Signature over hashed proof_payload.
curl --request POST \
--url https://api.turnkey.com/public/v1/query/list_app_proofs \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>",
"activityId": "<string>"
}'
{
"appProofs": [
{
"scheme": "<SIGNATURE_SCHEME_EPHEMERAL_KEY_P256>",
"publicKey": "<string>",
"proofPayload": "<string>",
"signature": "<string>"
}
]
}