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

# Get QR-only shared open timeseries REST API

GET

/api/qr-share/{token}/qr-code/opens/timeseries

FetchcURL

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

-

Returns QR redirect opens over time for a QR-only share link.

## Parameters

### Path Parameters

**token**

required

string

### Query Parameters

**from**

string format: date-time

**to**

string format: date-time

## Responses

### 200

QR open series

application/json

Array<object>

object

**opens**

integer

**time**

string format: date-time

##### Examplegenerated

```
[
  {
    "opens": 1,
    "time": "2026-04-15T12:00:00Z"
  }
]
```

[Previous Get QR-only shared asset](https://hitkeep.com/api/operations/apiqr-sharetokenqr-codeasset/)[Next Get QR-only shared summary](https://hitkeep.com/api/operations/apiqr-sharetokenqr-codesummary/)
