For Agents
Provision and manage dedicated Ethereum nodes on Google Cloud's Blockchain Node Engine. Agents can create nodes, list operations, and inspect node endpoints.
Use for: I need to provision a dedicated Ethereum mainnet node, List all blockchain nodes in a project and location, Get the JSON-RPC endpoint for a specific node, Update a node to switch from full to archive type
Not supported: Does not submit transactions, broadcast blocks, or query on-chain state — use for managing dedicated blockchain node resources only.
Blockchain Node Engine is Google Cloud's managed Ethereum-compatible node service. The API provisions and manages dedicated archive and full nodes that you can query via JSON-RPC for on-chain data, transaction submission, and indexing without operating execution and consensus client pairs yourself. The API exposes blockchainNodes resources plus the surrounding long-running operations and locations metadata. It targets teams building wallets, indexers, analytics, and dApp backends that need a stable RPC endpoint with Google's reliability and IAM model.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Blockchain Node Engine API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Blockchain Node Engine API.
Provision dedicated Ethereum mainnet or testnet nodes in a Google Cloud region
List blockchainNodes under a project and location
Get node details including the JSON-RPC endpoint and current sync state
Update node configuration such as type and Polygon-specific settings
Delete nodes that are no longer needed
Cancel long-running operations that are still in progress
List operations to monitor provisioning and update progress
Patterns agents use Blockchain Node Engine API for, with concrete tasks.
★ Dedicated dApp Backend
Provision a dedicated Ethereum node so a dApp backend has a stable JSON-RPC endpoint without sharing rate limits with other tenants. blockchainNodes are managed at /v1/{parent}/blockchainNodes and the create call returns a long-running operation under /v1/{name}/operations. Once ready, the node exposes both a JSON-RPC and a WebSocket endpoint for the application.
Create a fullnode of type GETH on the MAINNET network in us-central1 under project myproj, then poll the operation until done.
Archive Node for Indexing
Run an archive node to support historical state queries that full nodes prune. blockchainNodes accept a nodeType of ARCHIVE and a network (MAINNET, GOERLI, SEPOLIA, or POLYGON_MAINNET). Archive nodes are larger and slower to provision but unlock building custom indexers and analytics over chain history.
Create an archive node of type GETH on POLYGON_MAINNET in us-east4 named indexer-1 under project myproj.
Operations Monitoring
List long-running operations on a node and inspect their state to track provisioning and updates. Operations are exposed at /v1/{name}/operations and individual operations at /v1/{name} where name is the operation resource. Cancel an in-progress provisioning if requirements change before it completes.
List all operations under projects/myproj/locations/us-central1 and return any in state RUNNING for blockchain nodes.
Agent-Driven Node Lifecycle
Let an AI agent take a request like 'spin up a Sepolia full node and tear it down after the test' and run the create+delete sequence through Jentic. The agent handles operation polling and reports the JSON-RPC endpoint when ready. OAuth credentials never leave the Jentic vault.
From the request 'create a Sepolia testnet node, return its endpoint, and delete it after I confirm', execute create, poll until done, return the endpoint, then delete.
8 endpoints — blockchain node engine is google cloud's managed ethereum-compatible node service.
METHOD
PATH
DESCRIPTION
/v1/{+parent}/blockchainNodes
Create a new blockchain node
/v1/{+parent}/blockchainNodes
List blockchain nodes in a project and location
/v1/{+name}
Get a node, operation, or location by resource name
/v1/{+name}
Update a blockchain node
/v1/{+name}
Delete a blockchain node
/v1/{+name}:cancel
Cancel a long-running operation
/v1/{+name}/operations
List long-running operations
/v1/{+parent}/blockchainNodes
Create a new blockchain node
/v1/{+parent}/blockchainNodes
List blockchain nodes in a project and location
/v1/{+name}
Get a node, operation, or location by resource name
/v1/{+name}
Update a blockchain node
/v1/{+name}
Delete a blockchain node
/v1/{+name}:cancel
Cancel a long-running operation
/v1/{+name}/operations
List long-running operations
Three things that make agents converge on Jentic-routed access.
Credential isolation
Google OAuth 2.0 client credentials and refresh tokens are stored encrypted in the Jentic vault (MAXsystem). Agents receive short-lived scoped access tokens at execution time, so node provisioning credentials never sit in agent context.
Intent-based discovery
Agents search Jentic with intents like 'create an Ethereum node on Google Cloud' and Jentic returns the create blockchainNode operation with its full ethereumDetails schema.
Time to first call
Direct integration: half a day to a day for OAuth, the long-running operation pattern, and the node config. Through Jentic: under 30 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Blockchain Node Engine API through Jentic.
What authentication does the Blockchain Node Engine API use?
The API uses Google OAuth 2.0 with the cloud-platform scope. Through Jentic the OAuth refresh token is stored encrypted and the agent receives short-lived scoped access tokens for each call.
Can I provision an archive Ethereum node with this API?
Yes. POST /v1/{parent}/blockchainNodes with ethereumDetails.nodeType set to ARCHIVE and the desired network (MAINNET, GOERLI, SEPOLIA, or POLYGON_MAINNET) returns a long-running operation. Archive nodes take longer to sync because they retain full historical state.
What are the rate limits for the Blockchain Node Engine API?
Control-plane quotas are project-level: typically a small write QPS on the same node and bursty read QPS for list and get. Heavy provisioning churn is rate-limited per project. JSON-RPC traffic to the node itself is governed by the node's own throughput, not by this control-plane API.
How do I create a node through Jentic?
Search Jentic for 'create a Blockchain Node Engine node', load the schema for POST /v1/{parent}/blockchainNodes, and execute with blockchainType ETHEREUM and the desired ethereumDetails. Jentic forwards the OAuth token and returns the long-running operation name to poll.
Does this API submit transactions or read on-chain state?
No. This control-plane API only manages the node resource. Submit transactions and read state via the node's JSON-RPC endpoint (returned in the node's connectionInfo) using a standard Ethereum client library.
What networks are supported?
Ethereum mainnet, Goerli, Sepolia testnets, and Polygon mainnet are exposed via the ethereumDetails.network enum on the blockchainNode resource. Other chains are not currently supported by Blockchain Node Engine.
GET STARTED