Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.turnkey.com/llms.txt

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

organizationId
string
required
Unique identifier for a given organization.
A successful response returns the following fields:
tvcApps
array
required
A list of TVC Apps.
curl --request POST \
  --url https://api.turnkey.com/public/v1/query/list_tvc_apps \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>"
}'
{
  "tvcApps": [
    {
      "id": "<string>",
      "organizationId": "<string>",
      "name": "<string>",
      "quorumPublicKey": "<string>",
      "manifestSet": {
        "id": "<string>",
        "name": "<string>",
        "organizationId": "<string>",
        "operators": [
          {
            "id": "<string>",
            "name": "<string>",
            "publicKey": "<string>",
            "createdAt": {
              "seconds": "<string>",
              "nanos": "<string>"
            },
            "updatedAt": {
              "seconds": "<string>",
              "nanos": "<string>"
            }
          }
        ],
        "threshold": "<number>",
        "createdAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        },
        "updatedAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        }
      },
      "shareSet": {
        "id": "<string>",
        "name": "<string>",
        "organizationId": "<string>",
        "operators": [
          {
            "id": "<string>",
            "name": "<string>",
            "publicKey": "<string>",
            "createdAt": {
              "seconds": "<string>",
              "nanos": "<string>"
            },
            "updatedAt": {
              "seconds": "<string>",
              "nanos": "<string>"
            }
          }
        ],
        "threshold": "<number>",
        "createdAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        },
        "updatedAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        }
      },
      "enableEgress": "<boolean>",
      "createdAt": {
        "seconds": "<string>",
        "nanos": "<string>"
      },
      "updatedAt": {
        "seconds": "<string>",
        "nanos": "<string>"
      },
      "liveDeploymentId": "<string>",
      "publicDomain": "<string>"
    }
  ]
}