Attribution
Attribution is never required — but if you built something with the Torch & Lily API and want to acknowledge it, here are ready-made snippets you can drop in as-is.
HTML Badge
Section titled “HTML Badge”For an app footer or about page:
<a href="https://torchandlily.com" target="_blank" rel="noopener noreferrer" style="display:inline-flex;align-items:center;gap:0.5rem;font-family:monospace;font-size:0.7rem;text-transform:uppercase;letter-spacing:0.15em;color:#6b7280;text-decoration:none;"> <img src="https://torchandlily.com/images/torch_lily_logo.png" alt="Torch & Lily" width="18" height="18" style="border-radius:50%;border:1px solid #d1d5db;" /> Powered by Torch & Lily</a>Markdown Badge
Section titled “Markdown Badge”For a README.md:
[](https://torchandlily.com)
> Powered by the [Torch & Lily](https://torchandlily.com) Catholic Data API.Or as a plain text link if you prefer no image:
Data provided by [Torch & Lily](https://torchandlily.com) — the Catholic Data API.React Component
Section titled “React Component”export function TorchAndLilyBadge() { return ( <a href="https://torchandlily.com" target="_blank" rel="noopener noreferrer" className="inline-flex items-center gap-2 font-mono text-[0.7rem] uppercase tracking-widest text-gray-400 no-underline hover:text-gray-600 transition-colors" > <img src="https://torchandlily.com/images/torch_lily_logo.png" alt="Torch & Lily" width={18} height={18} className="rounded-full border border-gray-200" /> Powered by Torch & Lily </a> );}If you ship something with the API, we would genuinely love to hear about it.