Data node information
GEThttps://croissant.network/api/v2/info
Get information about the data node. Response contains a semver formatted version of the data node and the commit hash, from which the data node was built
Request
Responses
- 200
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
commitHash string
Commit hash from which the data node was built.
version string
Semver formatted version of the data node.
{
"commitHash": "string",
"version": "string"
}
An internal server error
- application/json
- Schema
- Example (from schema)
Schema
code int32
details object[]
message string
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
code int32
details object[]
message string
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
- curl
- python
- go
- nodejs
- CURL
curl -L -X GET 'https://croissant.network/api/v2/info' \
-H 'Accept: application/json'
ResponseClear