# /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"
}
```
