> 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/core/catchup.md).

# Catchup

### Example

```javascript
const params = {
  witnesses: witnesses,
  last_stable_mci: 2871302,
  last_known_mci: 2871312
};

client.api.catchup(params, function(err, result) {
  if (err) return console.error(err);
  console.log(result);
});
```

### Returns

```javascript
{
  status: 'current'
}
```
