POST
/
public
/
v1
/
query
/
list_smart_contract_interfaces
Authorizations
Body
Unique identifier for a given organization.
Response
A successful response returns the following fields:A list of smart contract interfaces.
Show smartContractInterfaces details
Show smartContractInterfaces details
The Organization the Smart Contract Interface belongs to.
Unique identifier for a given Smart Contract Interface (ABI or IDL).
The address corresponding to the Smart Contract or Program.
The JSON corresponding to the Smart Contract Interface (ABI or IDL).
The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA).
The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA).
The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA).
Copy
Ask AI
curl --request POST \
--url https://api.turnkey.com/public/v1/query/list_smart_contract_interfaces \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>"
}'
Copy
Ask AI
{
"smartContractInterfaces": [
{
"organizationId": "<string>",
"smartContractInterfaceId": "<string>",
"smartContractAddress": "<string>",
"smartContractInterface": "<string>",
"type": "<string>",
"label": "<string>",
"notes": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
}
}
]
}