Get QR-only shared open timeseries
GET
/api/qr-share/{token}/qr-code/opens/timeseries
const url = 'https://app.hitkeep.com/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 https://app.hitkeep.com/api/qr-share/example/qr-code/opens/timeseriesReturns QR redirect opens over time for a QR-only share link.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” token
required
string
Query Parameters
Section titled “Query Parameters ” from
string format: date-time
to
string format: date-time
Responses
Section titled “ Responses ”QR open series
Media type application/json
Array<object>
object
opens
integer
time
string format: date-time
Example generated
[ { "opens": 1, "time": "2026-04-15T12:00:00Z" }]