Skip to main content
GET
Renders a stored QR Code as an image file.
string
required
The QR Code’s qrid.

Query parameters

string
default:"png"
Output format: png, jpg, jpeg, svg, pdf, eps, or ps.
integer
default:"300"
Output size in pixels, from 10 to 2400.
boolean
default:"false"
Return a print-ready PDF. This path is generated locally rather than through the generator service, and ignores file.
string
Pre-computed encode payload override. Dynamic QR Codes never need this — it exists for static categories whose client-side encoding the backend does not independently reproduce.
The response is a binary file (Content-Disposition: attachment), not JSON.
Except for for_print, rendering round-trips to an external QR Code generator service. A 503 therefore means that upstream call failed, not that your request was wrong — retry, and contact support if it persists.

Authorizations

Authorization
string
header
required

Send your Management API key as the raw value of the Authorization header — no "Bearer " or "Token " prefix, and no other characters. Example: Authorization: 401f7ac837da42b97f613d789819ff93537bee6a. A header containing more than one space-separated part is rejected outright. Requests also require the request's Host header to be the management API host (e.g. api.scanova.io) — the same key sent to the regular API host will not authenticate.

Path Parameters

qrid
string
required

The QR code's qrid — the opaque public identifier returned by the list endpoint, not the numeric id.

Query Parameters

size
integer
default:300

Output size in pixels, from 10 to 2400.

for_print
boolean
default:false

Return a print-ready PDF, generated locally rather than via the generator service.

file
enum<string>

Output format.

Available options:
png,
jpg,
jpeg,
svg,
pdf,
eps,
ps
info
string

Pre-computed encode payload override, for static categories whose client-side encoding the backend does not reproduce.

Response

The rendered image, as a binary attachment.