> For the complete documentation index, see [llms.txt](https://obytejs.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://obytejs.com/0.1.17/post/data-feed.md).

# Data feed

### Returns

Returns the unit hash.

### Example

```javascript
const params = {
  time: new Date().toString(), 
  timestamp: Date.now()
};

client.post.dataFeed(params, wif, function(err, result) {
  if (err) return console.error(err);
  console.log(result);
});
```

### **Learn more**

* "21.1.7. Data feeds" (page 45) <https://obyte.org/Byteball.pdf>
