Ceramic · Example Payload

Get Event Feed

Example request to GET /ceramic/feed/events to retrieve new event keys since a resume token.

DecentralizedWeb3Data StreamsDIDIPFSBlockchainEvent StreamingComposeDB

Get Event Feed 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 the event feed",
  "description": "Example request to GET /ceramic/feed/events to retrieve new event keys since a resume token.",
  "request": {
    "method": "GET",
    "url": "http://localhost:5101/ceramic/feed/events?limit=100&includeData=full",
    "headers": {}
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "events": [
        {
          "id": "bagcqcerae5oqoge4c5kzl7wnymq4stdesmfqxnos2lspvcwpitdreytkpjxa",
          "data": "uomdkYXRhkWVoZWxsb2V3b3JsZA"
        }
      ],
      "resumeToken": "1700000000000000000"
    }
  }
}