Network parameters list
GET/network/parameters
Get a list of network parameters. This endpoint may not be exposed by mainnet nodes.
Request
Query Parameters
networkParameterKey string
Responses
- 200
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
networkParameters object[]
key string
Unique key of the network parameter.
value string
Value for the network parameter.
{
  "networkParameters": [
    {
      "key": "string",
      "value": "string"
    }
  ]
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
code int32
details object[]
@type string
message string
{
  "code": 0,
  "details": [
    {
      "@type": "string"
    }
  ],
  "message": "string"
}
Loading...