Terp Network Docs
APIsRpcInfo
GET
/genesis_chunked

Get genesis document in a paginated/chunked format to make it easier to iterate through larger genesis structures.

Query Parameters

chunkID?integer

Sequence number of the chunk to download.

Default0

Response Body

application/json

application/json

curl -X GET "https://rpc.terp.network/genesis_chunked"
{
  "jsonrpc": "2.0",
  "id": 0,
  "result": {
    "chunk": 0,
    "total": 1,
    "data": "Z2VuZXNpcwo="
  }
}
{
  "id": 0,
  "jsonrpc": "2.0",
  "error": "Description of failure"
}