gRPC
Endpoint:
hedera-grpc.nownodes.ioAuthentication:
api-key: YOUR_API_KEYOfficial proto sources:
https://github.com/hashgraph/hedera-protobufsproto.CryptoService
createAccount
Description: Creates create Account data from the proto.CryptoService gRPC service.
proto.CryptoService/createAccountRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.CryptoService/createAccountResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}updateAccount
Description: Updates update Account data from the proto.CryptoService gRPC service.
proto.CryptoService/updateAccountRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.CryptoService/updateAccountResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}cryptoTransfer
Description: Calls the cryptoTransfer operation on the proto.CryptoService gRPC service and returns the method-specific response.
proto.CryptoService/cryptoTransferRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.CryptoService/cryptoTransferResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}cryptoDelete
Description: Calls the cryptoDelete operation on the proto.CryptoService gRPC service and returns the method-specific response.
proto.CryptoService/cryptoDeleteRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.CryptoService/cryptoDeleteResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}approveAllowances
Description: Approves approve Allowances data from the proto.CryptoService gRPC service.
proto.CryptoService/approveAllowancesRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.CryptoService/approveAllowancesResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}deleteAllowances
Description: Deletes delete Allowances data from the proto.CryptoService gRPC service.
proto.CryptoService/deleteAllowancesRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.CryptoService/deleteAllowancesResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}getAccountRecords
Description: Retrieves get Account Records data from the proto.CryptoService gRPC service.
proto.CryptoService/getAccountRecordsRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.CryptoService/getAccountRecordsResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_account_recordsResponse": {
"status": "OK"
}
}cryptoGetBalance
Description: Calls the cryptoGetBalance operation on the proto.CryptoService gRPC service and returns the method-specific response.
proto.CryptoService/cryptoGetBalanceRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.CryptoService/cryptoGetBalanceResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"crypto_get_balanceResponse": {
"status": "OK"
}
}getAccountInfo
Description: Retrieves get Account Info data from the proto.CryptoService gRPC service.
proto.CryptoService/getAccountInfoRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.CryptoService/getAccountInfoResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_account_infoResponse": {
"status": "OK"
}
}getTransactionReceipts
Description: Retrieves get Transaction Receipts data from the proto.CryptoService gRPC service.
proto.CryptoService/getTransactionReceiptsRequest:
{
"startingVersion": "0",
"transactionsCount": "100",
"batchSize": "100"
}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{"startingVersion":"0","transactionsCount":"100","batchSize":"100"}' 'hedera-grpc.nownodes.io' proto.CryptoService/getTransactionReceiptsResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_transaction_receiptsResponse": {
"status": "OK"
}
}getTxRecordByTxID
Description: Retrieves get Tx Record By Tx ID data from the proto.CryptoService gRPC service.
proto.CryptoService/getTxRecordByTxIDRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.CryptoService/getTxRecordByTxIDResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_tx_record_by_tx_idResponse": {
"status": "OK"
}
}proto.FileService
createFile
Description: Creates create File data from the proto.FileService gRPC service.
proto.FileService/createFileRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.FileService/createFileResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}updateFile
Description: Updates update File data from the proto.FileService gRPC service.
proto.FileService/updateFileRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.FileService/updateFileResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}deleteFile
Description: Deletes delete File data from the proto.FileService gRPC service.
proto.FileService/deleteFileRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.FileService/deleteFileResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}appendContent
Description: Calls the appendContent operation on the proto.FileService gRPC service and returns the method-specific response.
proto.FileService/appendContentRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.FileService/appendContentResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"append_contentResponse": {
"status": "OK"
}
}getFileContent
Description: Retrieves get File Content data from the proto.FileService gRPC service.
proto.FileService/getFileContentRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.FileService/getFileContentResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_file_contentResponse": {
"status": "OK"
}
}getFileInfo
Description: Retrieves get File Info data from the proto.FileService gRPC service.
proto.FileService/getFileInfoRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.FileService/getFileInfoResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_file_infoResponse": {
"status": "OK"
}
}proto.SmartContractService
createContract
Description: Creates create Contract data from the proto.SmartContractService gRPC service.
proto.SmartContractService/createContractRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.SmartContractService/createContractResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}updateContract
Description: Updates update Contract data from the proto.SmartContractService gRPC service.
proto.SmartContractService/updateContractRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.SmartContractService/updateContractResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}contractCallMethod
Description: Calls the contractCallMethod operation on the proto.SmartContractService gRPC service and returns the method-specific response.
proto.SmartContractService/contractCallMethodRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.SmartContractService/contractCallMethodResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"contract_call_methodResponse": {
"status": "OK"
}
}deleteContract
Description: Deletes delete Contract data from the proto.SmartContractService gRPC service.
proto.SmartContractService/deleteContractRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.SmartContractService/deleteContractResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}contractCallLocalMethod
Description: Calls the contractCallLocalMethod operation on the proto.SmartContractService gRPC service and returns the method-specific response.
proto.SmartContractService/contractCallLocalMethodRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.SmartContractService/contractCallLocalMethodResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"contract_call_local_methodResponse": {
"status": "OK"
}
}getContractInfo
Description: Retrieves get Contract Info data from the proto.SmartContractService gRPC service.
proto.SmartContractService/getContractInfoRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.SmartContractService/getContractInfoResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_contract_infoResponse": {
"status": "OK"
}
}getBySolidityID
Description: Retrieves get By Solidity ID data from the proto.SmartContractService gRPC service.
proto.SmartContractService/getBySolidityIDRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.SmartContractService/getBySolidityIDResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_by_solidity_idResponse": {
"status": "OK"
}
}getTxRecordByContractID
Description: Retrieves get Tx Record By Contract ID data from the proto.SmartContractService gRPC service.
proto.SmartContractService/getTxRecordByContractIDRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.SmartContractService/getTxRecordByContractIDResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_tx_record_by_contract_idResponse": {
"status": "OK"
}
}proto.ConsensusService
createTopic
Description: Creates create Topic data from the proto.ConsensusService gRPC service.
proto.ConsensusService/createTopicRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.ConsensusService/createTopicResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}updateTopic
Description: Updates update Topic data from the proto.ConsensusService gRPC service.
proto.ConsensusService/updateTopicRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.ConsensusService/updateTopicResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}deleteTopic
Description: Deletes delete Topic data from the proto.ConsensusService gRPC service.
proto.ConsensusService/deleteTopicRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.ConsensusService/deleteTopicResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}submitMessage
Description: Submits submit Message data from the proto.ConsensusService gRPC service.
proto.ConsensusService/submitMessageRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.ConsensusService/submitMessageResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}getTopicInfo
Description: Retrieves get Topic Info data from the proto.ConsensusService gRPC service.
proto.ConsensusService/getTopicInfoRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.ConsensusService/getTopicInfoResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_topic_infoResponse": {
"status": "OK"
}
}proto.TokenService
createToken
Description: Creates create Token data from the proto.TokenService gRPC service.
proto.TokenService/createTokenRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/createTokenResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}updateToken
Description: Updates update Token data from the proto.TokenService gRPC service.
proto.TokenService/updateTokenRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/updateTokenResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}mintToken
Description: Calls the mintToken operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/mintTokenRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/mintTokenResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"mint_tokenResponse": {
"status": "OK"
}
}burnToken
Description: Calls the burnToken operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/burnTokenRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/burnTokenResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"burn_tokenResponse": {
"status": "OK"
}
}deleteToken
Description: Deletes delete Token data from the proto.TokenService gRPC service.
proto.TokenService/deleteTokenRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/deleteTokenResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}wipeTokenAccount
Description: Calls the wipeTokenAccount operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/wipeTokenAccountRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/wipeTokenAccountResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"wipe_token_accountResponse": {
"status": "OK"
}
}associateTokens
Description: Calls the associateTokens operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/associateTokensRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/associateTokensResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"associate_tokensResponse": {
"status": "OK"
}
}dissociateTokens
Description: Calls the dissociateTokens operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/dissociateTokensRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/dissociateTokensResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"dissociate_tokensResponse": {
"status": "OK"
}
}freezeTokenAccount
Description: Calls the freezeTokenAccount operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/freezeTokenAccountRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/freezeTokenAccountResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}unfreezeTokenAccount
Description: Calls the unfreezeTokenAccount operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/unfreezeTokenAccountRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/unfreezeTokenAccountResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"unfreeze_token_accountResponse": {
"status": "OK"
}
}grantKycToTokenAccount
Description: Calls the grantKycToTokenAccount operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/grantKycToTokenAccountRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/grantKycToTokenAccountResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"grant_kyc_to_token_accountResponse": {
"status": "OK"
}
}revokeKycFromTokenAccount
Description: Calls the revokeKycFromTokenAccount operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/revokeKycFromTokenAccountRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/revokeKycFromTokenAccountResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"revoke_kyc_from_token_accountResponse": {
"status": "OK"
}
}pauseToken
Description: Calls the pauseToken operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/pauseTokenRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/pauseTokenResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"pause_tokenResponse": {
"status": "OK"
}
}unpauseToken
Description: Calls the unpauseToken operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/unpauseTokenRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/unpauseTokenResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"unpause_tokenResponse": {
"status": "OK"
}
}updateTokenFeeSchedule
Description: Updates update Token Fee Schedule data from the proto.TokenService gRPC service.
proto.TokenService/updateTokenFeeScheduleRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/updateTokenFeeScheduleResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}airdropTokens
Description: Calls the airdropTokens operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/airdropTokensRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/airdropTokensResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"airdrop_tokensResponse": {
"status": "OK"
}
}claimAirdrop
Description: Calls the claimAirdrop operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/claimAirdropRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/claimAirdropResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"claim_airdropResponse": {
"status": "OK"
}
}cancelAirdrop
Description: Calls the cancelAirdrop operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/cancelAirdropRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/cancelAirdropResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"cancel_airdropResponse": {
"status": "OK"
}
}rejectToken
Description: Calls the rejectToken operation on the proto.TokenService gRPC service and returns the method-specific response.
proto.TokenService/rejectTokenRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/rejectTokenResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"reject_tokenResponse": {
"status": "OK"
}
}getTokenInfo
Description: Retrieves get Token Info data from the proto.TokenService gRPC service.
proto.TokenService/getTokenInfoRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/getTokenInfoResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_token_infoResponse": {
"status": "OK"
}
}getAccountNftInfos
Description: Retrieves get Account Nft Infos data from the proto.TokenService gRPC service.
proto.TokenService/getAccountNftInfosRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/getAccountNftInfosResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_account_nft_infosResponse": {
"status": "OK"
}
}getTokenNftInfo
Description: Retrieves get Token Nft Info data from the proto.TokenService gRPC service.
proto.TokenService/getTokenNftInfoRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/getTokenNftInfoResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_token_nft_infoResponse": {
"status": "OK"
}
}getTokenNftInfos
Description: Retrieves get Token Nft Infos data from the proto.TokenService gRPC service.
proto.TokenService/getTokenNftInfosRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.TokenService/getTokenNftInfosResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_token_nft_infosResponse": {
"status": "OK"
}
}proto.ScheduleService
createSchedule
Description: Creates create Schedule data from the proto.ScheduleService gRPC service.
proto.ScheduleService/createScheduleRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.ScheduleService/createScheduleResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}signSchedule
Description: Calls the signSchedule operation on the proto.ScheduleService gRPC service and returns the method-specific response.
proto.ScheduleService/signScheduleRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.ScheduleService/signScheduleResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"sign_scheduleResponse": {
"status": "OK"
}
}deleteSchedule
Description: Deletes delete Schedule data from the proto.ScheduleService gRPC service.
proto.ScheduleService/deleteScheduleRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.ScheduleService/deleteScheduleResponse example:
{
"nodeTransactionPrecheckCode": "OK"
}getScheduleInfo
Description: Retrieves get Schedule Info data from the proto.ScheduleService gRPC service.
proto.ScheduleService/getScheduleInfoRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.ScheduleService/getScheduleInfoResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"get_schedule_infoResponse": {
"status": "OK"
}
}proto.UtilService
prng
Description: Calls the prng operation on the proto.UtilService gRPC service and returns the method-specific response.
proto.UtilService/prngRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.UtilService/prngResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"prngResponse": {
"status": "OK"
}
}atomicBatch
Description: Calls the atomicBatch operation on the proto.UtilService gRPC service and returns the method-specific response.
proto.UtilService/atomicBatchRequest:
{}grpcurl -insecure -H 'api-key: YOUR_API_KEY' -d '{}' 'hedera-grpc.nownodes.io' proto.UtilService/atomicBatchResponse example:
{
"responseHeader": {
"nodeTransactionPrecheckCode": "OK",
"responseType": "ANSWER_ONLY",
"cost": "0",
"stateProof": ""
},
"atomic_batchResponse": {
"status": "OK"
}
}