# RelayStation QR Code with Logo Generator

> RelayStation QR Code with Logo Generator is a paid API for AI agents from api.relaystation.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates a QR code with a custom logo composited in the center using high error-correction (ECC H) to ensure reliable scanning

## Facts

- Endpoint: POST https://api.relaystation.ai/v1/generate/qr-logo
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relaystation-qr-code-with-logo-generator-510c5bca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RCUtXUij_Z7cuR_4pBEjI

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 relaystation-qr-code-with-logo-generator-510c5bca -d '<json body>'
```

Example prompt: Generate a QR code for https://myshop.com that has our Morning Bloom coffee logo composited in the center — it needs to be scannable and ready for print on our packaging.

## When to prefer this

Choose this endpoint when you need a QR code that prominently features a brand logo in the center while remaining reliably scannable — the ECC H error correction level is specifically chosen to tolerate the logo obscuring part of the code. Ideal for marketing materials, product packaging, printed collateral, or any use case where brand recognition matters alongside QR functionality. Prefer this over a plain QR generator when branding and visual identity are requirements.

## Known failure modes

- Invalid or unreachable logo image URL causing generation failure
- Encoded data string too long for QR code capacity
- Logo image too large or in unsupported format
- Network timeout fetching the logo asset
- Malformed input payload missing required fields

## How this service works

$0.0002/call. QR code with your logo composited in the center (ECC H — still scans reliably). 1¢ x402 min; remainder auto-credits — relaystation.ai/penny

## Output

Returns a QR code image file (or URL to the image) with the provided logo composited in the center. The code uses ECC H (high error correction) so it remains scannable despite the logo obscuring part of the QR pattern. Pricing is $0.0002 per call with a 1¢ x402 minimum, and any unused credit is auto-credited.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "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/relaystation-qr-code-with-logo-generator-510c5bca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relaystation.ai](https://www.zero.xyz/host/api.relaystation.ai/llms.txt)
