Get producers

post

Retrieves producers list

Body
limitstringRequired

total number of producers to retrieve

lower_boundstringRequired

In conjunction with limit can be used to paginate through the results. For example, limit=10 and lower_bound=10 would be page 2

jsonbooleanOptional

return result in JSON format

Responses
200
OK
application/json
post
POST /v1/chain/get_producers HTTP/1.1
Host: eos.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 49

{
  "limit": "text",
  "lower_bound": "text",
  "json": true
}
200

OK

{
  "active": [
    {
      "version": 1,
      "producers": [
        {
          "producer_name": "text",
          "block_signing_key": "text"
        }
      ]
    }
  ],
  "pending": [
    {
      "version": 1,
      "producers": [
        {
          "producer_name": "text",
          "block_signing_key": "text"
        }
      ]
    }
  ],
  "proposed": [
    {
      "version": 1,
      "producers": [
        {
          "producer_name": "text",
          "block_signing_key": "text"
        }
      ]
    }
  ]
}