1. internal
ANQR - Animated QR Code Generator
  • qr
    • Generate a QR image
      GET
    • CORS preflight for QR generation
      OPTIONS
  • internal
    • Queue or perform a full background QR render
      POST
  • Schemas
    • BinaryFlag
    • HexColor6
    • AnyIntegerString
    • NonNegativeIntegerString
    • PositiveIntegerString
    • Percent0To100String
    • SignedPercentString
    • FractionString
    • AngleString
    • GammaString
    • ContrastRatioString
    • AnimFrames
    • AnimSpeed
    • GifColors
    • AlignmentStyle
    • FinderStyle
    • TimingStyle
    • AnimationPattern
    • AnimationEasing
    • AnimationTarget
    • AnimationWaveAxisInput
    • AnimationInterpolation
    • AnimationTemporalDitherMode
    • ColorMode
    • DitherKind
    • OrderedMatrix
    • GapMode
    • GradientType
    • HalftoneCellMode
    • HalftoneCurve
    • HalftoneDotShape
    • FormatExtra
    • FrameStyle
    • PerModuleColorMode
    • GradientStops
    • HexColorPalette
    • LanguageTag
    • OverlayFramePick
    • OverlayType
    • PaletteMode
    • PixelSnapMode
    • SafetyMode
    • SubpixelCenterRule
    • SubpixelFinderOverride
    • SubpixelGridSize
    • SvgPrecision
    • WatermarkBlend
    • WatermarkKind
    • WatermarkPosition
    • GifDisposal
    • MaskPatternInput
    • BackgroundRenderRequest
    • BackgroundRenderResponse
  1. internal

Queue or perform a full background QR render

POST
/.netlify/functions/qr-render-background
Internal Netlify background function used for long-running full overlay rendering. Accepts a target QR URL and performs the render in-process, then writes the result into blob cache.

Request

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Background render request processed
Body

🟠400
🟠403
🟠405
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/.netlify/functions/qr-render-background' \
--header 'Content-Type: application/json' \
--data-raw '{
    "url": "http://example.com"
}'
Response Response Example
200 - Example 1
{
    "status": "complete",
    "httpStatus": 100,
    "bodySize": 0,
    "message": "string"
}
Modified at 2026-03-15 04:47:10
Previous
CORS preflight for QR generation
Next
BinaryFlag
Built with