Drop Receiptify into your Discord bot in minutes. 52 brands, instant delivery, built for developers.
Nike, LV, StockX, Apple and 48 more โ pixel-perfect 1:1 receipts with auto-scraped product data.
Set Idempotency-Key and retry safely after failures. We only send one email, guaranteed.
rcptfy_test_ keys build receipts but never send emails. No more testing in production.
POST /v1/validate checks brand, URL, and fields for free before you use quota on /v1/generate.
GET /v1/usage returns discord_summary โ a pre-formatted string ready to paste into an embed.
Register an HTTPS endpoint and receive events when receipts send, with HMAC signature verification.
One-time payment. Key delivered instantly via Discord DM.
Custom quotas available. Message us on Discord โ
Full list always available at GET /v1/brands
From zero to first receipt in under a minute.
import requests
BASE = "https://api.reciptifydev.xyz/v1"
H = {"Authorization": "Bearer rcptfy_live_your_key"}
# Validate first (free)
vr = requests.post(f"{BASE}/validate", json={"brand":"nike","product_url":"https://...","price":"110.00"}, headers=H).json()
if vr["data"]["valid"]:
# Generate (uses 1 quota request)
gr = requests.post(f"{BASE}/generate", json={"brand":"nike","product_url":"https://...","price":"110.00","currency":"ยฃ","recipient_email":"buyer@gmail.com"}, headers=H).json()
print(f"โ
Sent! Order #{gr['data']['order_number']}")