> For the complete documentation index, see [llms.txt](https://sryvkver.gitbook.io/cobi.bike/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sryvkver.gitbook.io/cobi.bike/namespaces/app/read-later.md).

# Read Later

Adds an entry to the web-browser read later list.

{% tabs %}
{% tab title="Typescript" %}

```typescript
const readLaterCallback = (response: ReadLaterItem, timestamp?: Date) => {
    console.log(response, timestamp);
};


const request: ReadLaterItem = {
    title: 'Test',
    url: 'https://www.cobi.bike'
};

COBI.app.readLater.write(request, readLaterCallback);
```

{% content-ref url="/pages/Kk0LyoWLuEcbFPlpMjfY" %}
[ReadLaterItem](/cobi.bike/entities/readlateritem.md)
{% endcontent-ref %}
{% endtab %}

{% tab title="Javascript" %}

```javascript
const readLaterCallback = (response, timestamp) => {
    console.log(response, timestamp);
};


const request = {
    title: 'Test',
    url: 'https://www.cobi.bike'
};

COBI.app.readLater.write(request, readLaterCallback);
```

{% endtab %}
{% endtabs %}

<details>

<summary>Example Response</summary>

```json
{
    "title": "Test",
    "url": "https://www.cobi.bike"
}
```

</details>
