eth-v1-node-version
/eth/v1/node/version
Obtain the running beacon node's version string.
Requests the beacon node to provide implementation details in a format like the HTTP User-Agent field.
Example Request and Result for /v1/node/version
In this section, we provide an illustrative example of a request made to retrieve details contents using the /v1/node/version
endpoint. Additionally, we present the resulting response containing information about the running beacon node's version.
Parameters
- none
info
The example in this section uses a non-existing project id.
Make sure you replace it with your Ethereum Holesky Beacon endpoint when issuing the API calls.
Don't have a project id? Here's a straightforward guide on how to obtain one!
Obtain the running beacon node's version string.
GET
https://eth-holesky-beacon.blastapi.io/<project-id>/eth/v1/node/version
- 200: OK Expand for a detailed response example
{
"data": {
"version": "Lighthouse/v0.1.5 (Linux x86_64)"
}
}
Curl Request example
curl -X 'GET' \
'https://eth-holesky-beacon.blastapi.io/<project-id>/eth/v1/node/version' \
-H 'accept: application/json'