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

# /api/library/switch

**`POST`** Switch the library currently opened by Eagle.

| Parameter   | Description             |
| ----------- | ----------------------- |
| libraryPath | The path of the library |

**Sample Code:**

```javascript
var data = {
    "libraryPath": "/Users/augus/Pictures/Design.library"
};

var requestOptions = {
  method: 'POST',
  body: JSON.stringify(data),
  redirect: 'follow'
};

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

**Results Returned:**

```javascript
{
    "status": "success"
}
```
