---
title: "Get QR-only shared asset REST API | HitKeep"
description: "Reference for the HitKeep REST API operation Get QR-only shared asset, including request parameters, responses, and authentication notes."
canonical: "https://hitkeep.com/api/operations/apiqr-sharetokenqr-codeasset/"
---

# Get QR-only shared asset REST API

GET

/api/qr-share/{token}/qr-code/asset

FetchcURL

```
const url = 'http://127.0.0.1:25737/api/qr-share/example/qr-code/asset';
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/qr-share/example/qr-code/asset
```

-

Returns the filesystem-backed QR graphic exposed by a QR-only share link.

## Parameters

### Path Parameters

**token**

required

string

## Responses

### 200

Image asset stream

### 404

Asset not found

application/json

object

**message**

string

##### Examplegenerated

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

[Previous Get QR-only shared code](https://hitkeep.com/api/operations/apiqr-sharetokenqr-code/)[Next Get QR-only shared open timeseries](https://hitkeep.com/api/operations/apiqr-sharetokenqr-codeopenstimeseries/)
