---
title: "Unsubscribe from report REST API | HitKeep"
description: "Reference for the HitKeep REST API operation Unsubscribe from report, including request parameters, responses, and authentication notes."
canonical: "https://hitkeep.com/api/operations/apireportsunsubscribeopaque_token/get/"
---

# Unsubscribe from report REST API

GET

/api/reports/unsubscribe/{opaque_token}

FetchcURL

```
const url = 'http://127.0.0.1:25737/api/reports/unsubscribe/example';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```
curl --request GET \
  --url http://127.0.0.1:25737/api/reports/unsubscribe/example
```

-

Visible unsubscribe target that opts the signed recipient out of one report.

## Parameters

### Path Parameters

**opaque_token**

required

string

Opaque signed unsubscribe token.

## Responses

### 200

Unsubscribed

### 400

Invalid token

application/json

object

**message**

string

##### Examplegenerated

```
{
  "message": "example"
}
```

[Previous Preview report](https://hitkeep.com/api/operations/apireportspreview/)[Next One-click unsubscribe](https://hitkeep.com/api/operations/apireportsunsubscribeopaque_token/post/)
