QR Code Crafter R API

The R API from QR Code Crafter — 1 operation(s) for r.

Operations 2

GET /r/{slug} Redirect a dynamic QR scan #
HEAD /r/{slug} Check a dynamic QR redirect without a response body #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/qr-code-crafter-r-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

qr-code-crafter-r-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: QRCodeCrafter R API
  version: 1.0.0
  description: Generate branded static QR codes in SVG, PNG, JPG, WebP, PDF, or EPS via the QR Code Crafter service.
  termsOfService: https://qrcodecrafter.com/terms
  contact:
    name: QR Code Crafter Agent Support
    email: support@qrcodecrafter.com
servers:
- url: https://qrcodecrafter.com
  description: Production
tags:
- name: R
paths:
  /r/{slug}:
    parameters:
    - $ref: '#/components/parameters/DynamicQrSlug'
    get:
      summary: Redirect a dynamic QR scan
      operationId: redirectDynamicQr
      description: Public redirect. When aggregate analytics are enabled, only the slug and UTC count bucket are retained; no IP address, user agent, referrer, cookie, location, device data, or tracking parameter is stored.
      responses:
        '302':
          description: Active destination redirect
          headers:
            Location:
              schema:
                type: string
                format: uri
        '404':
          description: Dynamic QR slug not found
        '405':
          description: Method not allowed
        '410':
          description: Dynamic QR destination is owner-paused or operator-blocked
        '429':
          description: Redirect traffic rate limit exceeded
        '503':
          description: Redirect storage unavailable
          headers:
            Retry-After:
              schema:
                type: string
      tags:
      - R
    head:
      summary: Check a dynamic QR redirect without a response body
      operationId: headDynamicQr
      description: Returns the same status and Location headers as GET without a response body.
      responses:
        '302':
          description: Active destination redirect
          headers:
            Location:
              schema:
                type: string
                format: uri
        '404':
          description: Dynamic QR slug not found
        '410':
          description: Dynamic QR destination is owner-paused or operator-blocked
        '429':
          description: Redirect traffic rate limit exceeded
        '503':
          description: Redirect storage unavailable
      tags:
      - R
components:
  parameters:
    DynamicQrSlug:
      name: slug
      in: path
      required: true
      description: 22-character dynamic QR identifier
      schema:
        type: string
        pattern: ^[A-Za-z0-9_-]{22}$
  securitySchemes:
    AgentApiKey:
      type: apiKey
      in: header
      name: X-Agent-Api-Key
      description: Optional API key used when integrations need scoped or rate-limited access.
    DynamicQrBearer:
      type: http
      scheme: bearer
      bearerFormat: capability-token
      description: Private 43-character management capability returned at creation or explicit token rotation.
    DynamicQrVaultBearer:
      type: http
      scheme: bearer
      bearerFormat: capability-token
      description: Private 43-character vault capability returned only when the vault is created. It authorizes the vault and all nested records; child credentials are never exposed.
x-agent-workflows:
  dynamicQrCampaign:
    description: Create one to five dynamic QR redirects sequentially. Each row uses createDynamicQr; retain successful one-time management capabilities even when a later row fails. Do not retry a successful row automatically.
    runtimeTool: create_dynamic_qr_campaign
    visibleFormTool: create_dynamic_qr_campaign_pack
    maxRows: 5
    assetWorkflow: Call generateQr for each successful redirectUrl, or use the visible browser workflow to download one private ZIP with QR assets and JSON/CSV capability manifests.
    privacy: Management URLs and tokens are unrecoverable secrets. Never publish the manifest or include management capabilities in QR artwork.