# /api/library/icon

**`GET`** Obtain the icon of the specified Library.

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

**Sample Code:**

{% code overflow="wrap" %}

```javascript
const libraryPath = encodeURIComponent("/Users/augus/Pictures/Design.library");
const image = `http://localhost:41595/api/library/icon?libraryPath=${libraryPath}`;
```

{% endcode %}
