Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 462 Bytes

File metadata and controls

22 lines (14 loc) · 462 Bytes

create

Create AI QR Code

Create an AI QR code. Each QR code costs 20 frames.

API Endpoint: POST /v1/ai-qr-code-generator

Example Snippet

import Client from "magic-hour";

const client = new Client({ token: process.env["API_TOKEN"]!! });

const res = await client.v1.aiQrCodeGenerator.create({
  content: "https://magichour.ai",
  style: { artStyle: "Watercolor" },
});

Upgrade to see all examples