Documentation Index
Fetch the complete documentation index at: https://turnkey-0e7c1f5b-andrew-prettier.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Unique identifier for a given organization.
Unique identifier for a given smart contract interface.
A successful response returns the following
fields:
smartContractInterface fieldShow smartContractInterface details
curl --request POST \
--url https://api.turnkey.com/public/v1/query/get_smart_contract_interface \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>",
"smartContractInterfaceId": "<string>"
}'
{
"smartContractInterface": {
"organizationId": "<string>",
"smartContractInterfaceId": "<string>",
"smartContractAddress": "<string>",
"smartContractInterface": "<string>",
"type": "<string>",
"label": "<string>",
"notes": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
}
}
}