> For the complete documentation index, see [llms.txt](https://api.eagle.cool/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api.eagle.cool/library/history.md).

# /api/library/history

**`GET`** Get the list of libraries recently opened by the Application.&#x20;

**Sample Code:**

```javascript
var requestOptions = {
  method: 'GET',
  redirect: 'follow'
};

fetch("http://localhost:41595/api/library/history", requestOptions)
  .then(response => response.json())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));
```

**Results Returned:**

```javascript
{
    "status": "success",
    "data": [
        "/Users/augus/Google Drive/Design fields.library",
        "/Users/augus/Google Drive/Office Style.library",
        "/Users/augus/Google Drive/Design Assets.library"
    ]
}
```
