# pin\_rm

## /api/v0/pin/rm

Remove pinned objects from local storage.

### REQUEST

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

```bash
curl "https://mainnet-rpc.wetez.io/ipfs/$AdminKey/api/v0/pin/rm?arg=<ipfs-path>" \
    -X POST
```

{% endtab %}

{% tab title="Example" %}

```bash
curl "https://mainnet-rpc.wetez.io/ipfs/$AdminKey/api/v0/pin/rm?arg=QmPrF9X3RAvtZ6p3HD7uaXSwfFR7VSZXL5H18HTMB791KN" \
    -X POST
```

{% endtab %}
{% endtabs %}

#### REQUEST PARAMS

* `arg` *\[Required]* - Path to object(s) to be unpinned.

### RESPONSE

On success, the call to this endpoint returns with 200 and the following body:

#### BODY

```
{
  "Pins": [
    "string"
  ]
}
```
