> 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/api/get-data-feed.md).

# Get data feed

### Example

```javascript
const params = {
    oracles: [
        'I2ADHGP4HL6J37NQAD73J7E5SKFIXJOT',
        'BVVJ2K7ENPZZ3VYZFWQWK7ISPCATFIW3'
    ],
    feed_name: 'timestamp',
	// feed_value: string | number | boolean;
	// min_mci: number;
	// ifseveral: 'abort' | 'last';
	// what: 'unit' | 'value';
	// type: 'string' | 'auto';
	// ifnone: string | number | boolean;
};
client.api.getDataFeed(params, function(err, result) {
    if (err) return console.error(err);
    console.log(result);
});
```

### Returns

```javascript
1618629895590
```

### **Learn more**

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