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.
tvcAppId
string
required
Unique identifier for a given TVC App.
A successful response returns the following fields:
tvcApp
object
required
tvcApp field
curl --request POST \
  --url https://api.turnkey.com/public/v1/query/get_tvc_app \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>",
    "tvcAppId": "<string>"
}'
{
  "tvcApp": {
    "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>"
  }
}