# OpenTools QR Code SVG Generator

> OpenTools QR Code SVG Generator is a paid API for AI agents from chargers-borders-cedar-fig.trycloudflare.com, paid per call via x402, price unknown, status unknown (last checked 2026-09-15).

Generates a QR code as an SVG image from provided input data via HTTP POST

## Facts

- Endpoint: POST https://chargers-borders-cedar-fig.trycloudflare.com/tools/qr-svg
- Price: price unknown
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/opentools-qr-code-svg-generator-3fdc45d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yCIaEUWsSuk-tFe5-iQJe

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability opentools-qr-code-svg-generator-3fdc45d6 -d '<json body>'
```

Example prompt: Can you generate an SVG QR code for the URL https://example.com so I can embed it on my webpage?

## When to prefer this

Choose this endpoint when you need a QR code delivered as scalable vector SVG rather than a raster PNG/JPEG — ideal for print, high-resolution displays, or embedding in HTML/CSS without quality loss.

## Known failure modes

- Missing or malformed request body resulting in a 400 error
- Input data too long to encode in a single QR code
- Service unavailable or Cloudflare tunnel down (503/504)
- Unsupported HTTP method (only POST accepted)

## How this service works

opentools utility endpoint

## Output

An SVG-format QR code image encoding the provided input data, returned as a vector graphic that can be scaled and embedded in web pages, print materials, or applications.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/opentools-qr-code-svg-generator-3fdc45d6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chargers-borders-cedar-fig.trycloudflare.com](https://www.zero.xyz/host/chargers-borders-cedar-fig.trycloudflare.com/llms.txt)
