Ceramic · Example Payload

Get Network Info

Example request to GET /ceramic/config/network to retrieve information about the Ceramic network the node is connected to.

DecentralizedWeb3Data StreamsDIDIPFSBlockchainEvent StreamingComposeDB

Get Network Info is an example object payload from Ceramic, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionrequestresponse

Example Payload

Raw ↑
{
  "summary": "Get Ceramic network info",
  "description": "Example request to GET /ceramic/config/network to retrieve information about the Ceramic network the node is connected to.",
  "request": {
    "method": "GET",
    "url": "http://localhost:5101/ceramic/config/network",
    "headers": {}
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "name": "mainnet"
    }
  }
}