Links API
GET
/v1/linksList & retrieve
Read your links back — the list, one link by slug, or its QR code as an SVG.
# The list — most recent first
curl "https://api.fictura.co/v1/links?limit=100" \
-H "Authorization: Bearer fk_live_..."
# One link
curl https://api.fictura.co/v1/links/springdrop \
-H "Authorization: Bearer fk_live_..."
# Its QR code — SVG, cached an hour
curl https://api.fictura.co/v1/links/springdrop/qr.svg \
-H "Authorization: Bearer fk_live_..."limitdefaults to 100 and is capped at 500.- An unknown slug answers
404 not_found— the same answer whether it never existed or belongs to someone else. qr.svgreturnsimage/svg+xmlwithCache-Control: public, max-age=3600— embed it directly.
The redirect itself is https://api.fictura.co/l/<slug> — that's the URL you put on the poster. Clicks, installs and re-engagements attribute to the link and surface on the Attribution page and in CSV exports.