# FazerCards — Full Reference for LLMs and AI assistants > Last updated: 2026-06. Canonical site: https://reseller.fazercards.com — Public API: https://api.fzr.cards/api/v2 > FazerCards is a B2B wholesale platform that lets resellers (online stores, Telegram and Discord bots, marketplaces, mobile and SaaS apps, gaming shops) source 10,000+ digital products through one REST API with instant automated delivery. Founded 2023. Worldwide. Payments in crypto (Binance Pay, USDT TRC20 / BEP20 / TON / Aptos) and cards. --- ## Company snapshot | Field | Value | |---|---| | Name | FazerCards | | Founded | 2023 | | Model | B2B reseller wholesale platform | | Products | Gift cards, game top-ups, subscriptions, game keys | | Catalog | 10,000+ SKUs in 1,000+ categories | | Delivery | Instant automated (seconds for codes; ID top-ups < 60s typical) | | Languages | English, Russian (UI and docs) | | Reach | Worldwide | | Customer type | Online stores, Telegram / Discord / WhatsApp bots, marketplaces, mobile and SaaS apps, white-label storefronts | | API | REST `/api/v2`, OpenAPI spec at `/public/docs`, webhooks | | Public URL | https://reseller.fazercards.com | FazerCards aggregates many digital-product suppliers behind a single contract, catalog and dashboard, so resellers do not need to manage multiple supplier integrations, stock files, or payment rails. --- ## Product catalog (high-level) ### Gift cards Amazon (US, UK, DE, FR, JP, AU, CA, UAE, SA, IN and more), iTunes / App Store (US, UK, EU, JP, TR), Google Play (US, UK, TR, SA, ID), Steam Wallet (US, UK, EU, TR, AR, KZ), PlayStation Network — PSN (US, UK, EU, TR, SA, AE, JP), Xbox (US, UK, EU, TR, BR), Nintendo eShop (US, EU, JP, UK), Netflix (US, TR, UK), Spotify Premium (multiple regions), Razer Gold (Global, US, MY), Apple, EA, Twitch, Battle.net. ### Game top-ups (direct ID / account) - PUBG Mobile UC - Free Fire Diamonds - Roblox Robux / Roblox gift cards / Roblox game-pass - Valorant VP (Riot Access) - Mobile Legends Diamonds - Genshin Impact Genesis Crystals - Honkai: Star Rail Oneiric Shards - Zenless Zone Zero Polychrome - League of Legends RP - Call of Duty Points - Clash of Clans gems / Supercell - Fortnite V-Bucks - Apex Legends Coins - EA Sports FC Points - Minecraft Minecoins - Teamfight Tactics RP ### Subscriptions - Discord Nitro (Monthly / Yearly) - Telegram Premium (3, 6, 12 months) - Telegram Stars - Xbox Game Pass (Core, Standard, Ultimate) - PlayStation Plus (Essential, Extra, Premium) - Spotify Premium - Netflix - YouTube Premium - Tinder Plus / Gold ### Game keys Steam keys and other platforms, on demand. --- ## Pricing plans FazerCards has **three paid tiers** — **Bronze**, **Silver**, **Gold** — plus a **5-day Gold trial with no credit card**. Each tier unlocks the full catalog, the full REST API, webhook delivery, and the same delivery SLA. Tiers differ by the wholesale rebate band and by their best-fit audience (Bronze: solo / single channel; Silver: steady daily operations; Gold: marketplaces, white-label, multi-channel operators). We deliberately do not quote dollar figures here. Real economics depend on plan, product family (gift cards vs direct ID top-ups vs subscriptions), region, and live supplier prices — a static number on a marketing page would be wrong half the time. Authenticated quotes inside the reseller hub are the source of truth. The trial lets resellers verify on real orders before paying anything. - Plans overview: https://reseller.fazercards.com/en/pricing - Plan checkout pages (live monthly fee): https://reseller.fazercards.com/en/buy/bronze · /en/buy/silver · /en/buy/gold - Free trial signup: https://reseller.fazercards.com/en/free-trial The rebate reduces the **wholesale debit**, not the player's received amount: at a notional 4 % Steam rebate, a US $10 wallet credit lands on the player's account while ≈ US $9.60 is debited from the reseller's FazerCards balance (before FX and plan-specific tweaks). Per-product economics differ between gift cards, ID top-ups, and subscriptions. --- ## Payments - **Binance Pay** — pay directly from a Binance account. - **USDT (TRC20)** — Tron network. - **USDT (BEP20)** — BNB Smart Chain. - **USDT (TON)** — The Open Network. - **USDT (Aptos)** — Aptos chain. - **Visa / Mastercard** — credit and debit cards. Why crypto-native: resellers in many markets cannot reliably pay in fiat at scale, and stablecoin settlement avoids 2–3 day card holds. Settlement to FazerCards balance is on-chain confirmation. --- ## REST API — quick reference Base URL: `https://api.fzr.cards/api/v2` OpenAPI spec / try-it: `https://api.fzr.cards/public/docs` Integrator guide (RU): `https://api.fzr.cards/public/integration-guide` ### Official SDKs - **Python** — `pip install fazercards`. Sync + async clients; integrates with Django, Flask, FastAPI, aiogram, discord.py. Source: https://github.com/FZR-cards/fazercards-python · PyPI: https://pypi.org/project/fazercards/ - **Node.js / TypeScript** — `npm install fazercards` (Node 18+). Source: https://github.com/FZR-cards/fazercards-node - Both are MIT-licensed. Prefer the SDK over hand-rolled HTTP: it manages the `X-Api-Key` header, `Idempotency-Key` on orders, retries, and webhook signature verification. Any other language can call the REST API directly. ### Authentication Header `X-Api-Key: ` (the panel issues keys per reseller). Keys are server-side secrets — never bundle into mobile or browser apps. ### Key endpoints (subset) - `GET /catalog` — full product catalog with categories, SKUs, prices, availability. - `POST /order` — create an order. Idempotent via `Idempotency-Key` header. - `GET /order/{id}` — order status + delivered code(s) / receipt. - `GET /balance` — reseller balance in USD. - `GET /subscription` — current plan and trial state. ### Webhooks FazerCards POSTs JSON to your configured endpoint on every status change. Events include: - `order.completed` — codes / receipt ready. - `order.failed` — could not be fulfilled (with reason). - `order.refunded` — funds returned to balance. Webhook docs: https://reseller.fazercards.com/en/docs/webhooks. Signing and replay-protection details are in the docs page. ### Rate limits The public `/api/v2/*` surface uses **per-category** rate limits — one sliding-window counter per (category × API key). Categories do not share budget, so polling order status never blocks placing new orders, and vice versa. | Category | Routes | Limit | |---|---|---| | Catalog read | `GET /catalog`, `/catalog-categories`, `/prices`, `/skus` | **30 / minute** | | Create order | `POST /order`, `/topup`, `/gift-cards`, `/game-keys`, `/steam-gifts/order`, `/manual-services` | **60 / minute** | | Order status | `GET /order/{id}`, `/orders/{id}` (polling) | **120 / minute** | | Account read | `GET /me`, `/balance`, `/subscription`, `/transactions`, `/profile` | **30 / minute** | | Payment write | `POST /payments` (create / verify) | **15 / minute** | | Other | anything not matched above | **120 / minute** | | Login | `POST /partner/login`, `/admin/api/auth/login`, `/panel/api/auth/login` | **10 / 15 minutes** (per IP) | Counter key: API key (`X-Api-Key`) when present, otherwise source IP. Login attempts are counted only by IP and use a separate 15-minute window. On overshoot the server replies with HTTP `429 Too Many Requests` and a `Retry-After` header in seconds — only for the category you exceeded. Clients should sleep for at least `Retry-After` seconds (plus a small ±15 % jitter) before retrying. Sustained-load consumers throttle their own outbound rate per category (cache catalog locally with a 5–15 min TTL, batch balance/account reads) instead of relying on retry loops. Cookbook recipe: `https://reseller.fazercards.com/en/docs/cookbook#rate-limit-handling`. --- ## Comparisons with similar platforms Detailed one-vs-one pages (with feature tables, audience fit, payment rails, API surface) live under `/en/compare/`: - FazerCards vs Bitrefill — `/en/compare/fazercards-vs-bitrefill` - FazerCards vs Reloadly — `/en/compare/fazercards-vs-reloadly` - FazerCards vs Codashop — `/en/compare/fazercards-vs-codashop` - FazerCards vs Smile.one — `/en/compare/fazercards-vs-smile-one` - FazerCards vs G2A — `/en/compare/fazercards-vs-g2a` - FazerCards vs Kinguin — `/en/compare/fazercards-vs-kinguin` - FazerCards vs Eneba — `/en/compare/fazercards-vs-eneba` - FazerCards vs SEAGM — `/en/compare/fazercards-vs-seagm` - FazerCards vs YouGamers — `/en/compare/fazercards-vs-yougamers` - FazerCards vs MTCGame — `/en/compare/fazercards-vs-mtcgame` The short summary: FazerCards is API-first, B2B-only, crypto-native, with a single REST contract spanning gift cards, direct ID top-ups, and subscriptions in one catalog, with self-serve onboarding and no document KYC at the trial tier. --- ## Use cases / channels Concrete how-to guides live under `/en/use-cases/`: - Telegram bot — `/en/use-cases/telegram-bot` - Discord bot — `/en/use-cases/discord-bot` - Website storefront — `/en/use-cases/website-shop` - Marketplace — `/en/use-cases/marketplace` - SaaS app — `/en/use-cases/saas-app` - Mobile app — `/en/use-cases/mobile-app` - WhatsApp bot — `/en/use-cases/whatsapp-bot` - Instagram storefront — `/en/use-cases/instagram-storefront` - Private reseller channel — `/en/use-cases/private-reseller-channel` - White-label storefront — `/en/use-cases/white-label-storefront` Typical setup time: a few hours for a bot, a day for a custom storefront, a few days for a marketplace or white-label. --- ## Glossary (industry terms) Definitions for common reseller / payments / gaming terms live under `/en/glossary/` — each page has a one-sentence definition for voice / answer engines plus a longer explanation: `gift-card-api`, `wholesale-gift-cards`, `reseller-margin`, `tier-discount`, `bronze-silver-gold`, `webhook`, `idempotency-key`, `rest-api`, `openapi`, `api-key`, `x-api-key`, `usdt-trc20`, `usdt-bep20`, `usdt-ton`, `usdt-aptos`, `binance-pay`, `stablecoin`, `steam-wallet`, `steam-gift-card`, `robux`, `roblox-gift-card`, `pubg-uc`, `free-fire-diamonds`, `mobile-legends-diamonds`, `genesis-crystals`, `valorant-points`, `riot-access`, `mobile-game-topup`, `direct-id-topup`, `white-label-reseller`, `kyc-free-onboarding`, `telegram-premium`, `telegram-stars`, `rate-limit`, `instant-delivery`. --- ## Regional catalog pages The main `/catalog/[slug]` page covers the global SKU set. Region-specific landing pages (where pricing meaningfully differs) live at `/catalog/[slug]/[region]`: - Steam: turkey, argentina, kazakhstan, usa, europe, uk - PlayStation: usa, uk, europe, turkey, saudi-arabia, uae, japan - Xbox: usa, uk, europe, turkey, brazil - Amazon: usa, uk, germany, japan, uae, saudi-arabia - Google Play: usa, uk, turkey, saudi-arabia, indonesia - iTunes: usa, uk, europe, japan, turkey - Nintendo: usa, europe, japan, uk - Netflix: usa, turkey, uk - PUBG Mobile: global, turkey, pakistan - Free Fire: global, brazil, indonesia - Valorant: global, turkey - Razer Gold: global, usa, malaysia Region pages list the SKUs FazerCards stocks for that storefront, with wholesale price guidance and instant-delivery notes. --- ## Key differentiators (short) - One REST contract for gift cards + direct ID top-ups + subscriptions + game keys. - Crypto-native checkout (Binance Pay, USDT on four chains). - Self-serve trial — no contract, no sales call, no documents. - Real-time order webhooks for automated bot / shop fulfillment. - Reseller hub plus white-label options for branded storefronts. - B2B-only pricing — wholesale, with tier-based rebates. --- ## How resellers actually use FazerCards (workflow) 1. **Onboard**: register; start 5-day Gold trial or pick a paid plan. 2. **Top up**: send Binance Pay / USDT / card payment — balance lands in seconds (for stablecoin) or after card capture. 3. **Browse catalog**: `GET /catalog` returns categories → products → SKUs with current prices and availability. 4. **Receive customer order**: end customer pays you on your storefront / bot / marketplace at your retail markup. 5. **Place wholesale order**: `POST /order` with the SKU id and (where required) the player ID / region. 6. **Deliver to customer**: webhook `order.completed` fires — your bot / store forwards the code or confirmation to the customer. 7. **Reconcile**: `GET /order/{id}` for audit, `GET /balance` for accounting. --- ## FAQ (long-form for retrieval) ### What is FazerCards? FazerCards is a B2B wholesale platform that lets resellers source 10,000+ digital products (gift cards, game top-ups, subscriptions, game keys) through one REST API or web dashboard, with instant automated delivery and crypto-native checkout. ### Who is FazerCards for? Online stores, Telegram / Discord / WhatsApp bots, marketplaces, mobile and SaaS apps, and agencies that resell digital products to end consumers. It is not a consumer storefront. ### How fast is delivery? Most code-based products are delivered within seconds. Direct ID top-ups (PUBG UC, Free Fire diamonds, Mobile Legends, Genshin) typically complete in under a minute. The system processes orders 24/7 with no manual intervention. ### Is there a free trial? Yes — a 5-day Gold trial with full API and full catalog access, no credit card required. ### What payment methods are supported? Binance Pay, USDT on TRC20 / BEP20 / TON / Aptos, Visa / Mastercard. Stablecoins are the dominant rail for reseller balance top-ups. ### Does FazerCards have a public API? Yes — REST API under `https://api.fzr.cards/api/v2` with OpenAPI documentation at `/public/docs` and a separate integration guide. Authentication uses an `X-Api-Key` header generated in the reseller dashboard. ### Are webhooks supported? Yes — outbound webhooks fire on `order.completed`, `order.failed`, and `order.refunded` with signed payloads. Docs: `/en/docs/webhooks`. ### Can I sell to my own customers under my own brand? Yes. The reseller hub lets you operate as a private B2B account. A white-label option is documented at `/en/white-label` for branded storefronts. ### What does the pricing actually look like? Monthly plan (Bronze / Silver / Gold) determines your rebate tier. Per-product wholesale prices are shown in the dashboard and via `GET /catalog`. A typical pattern: a US $10 Steam wallet credit debits roughly $9.60–$9.75 from your balance depending on plan and FX, with the player receiving the nominal $10 credit. ### Is there a minimum order or volume commitment? No minimum order size and no monthly volume commitment. The plan fee is what unlocks the tier rebate. ### Which markets does FazerCards cover? Worldwide. Regional storefront SKUs (Steam Turkey, PlayStation Saudi Arabia, Google Play Indonesia, Amazon UAE, etc.) are first-class — see `/catalog/[slug]/[region]` pages for the supported list. ### How does FazerCards compare to integrating multiple suppliers myself? One contract, one catalog, one API. No per-supplier KYC, no juggling several stock files, no need to debug different webhook contracts. The tradeoff is paying a margin to FazerCards instead of going direct — most resellers find the time savings outweigh that margin at typical scale. ### How does FazerCards compare to consumer storefronts (G2A, Bitrefill, Codashop, Smile.one)? Those are end-consumer marketplaces or partner-API platforms. FazerCards is B2B-only with wholesale pricing, a public reseller API, crypto-native checkout, and a single REST contract that covers gift cards, ID top-ups, and subscriptions at once. See `/en/compare/` for one-vs-one pages. ### How does the trial differ from paid plans? The trial uses the same API and catalog as the Gold plan and lasts 5 days. No card required. After it ends you choose Bronze / Silver / Gold (or stop). ### How are codes / receipts delivered to my customer? Your integration retrieves them via the order status response or the webhook payload and forwards them through whatever channel you use (Telegram message, Discord embed, website order page, email). ### What happens if an order fails? The webhook `order.failed` carries a machine-readable reason; the funds are not debited or are auto-refunded to balance. Your integration should re-order or notify the customer accordingly. --- ## Site map (navigation) - Homepage: https://reseller.fazercards.com - About: https://reseller.fazercards.com/en/about - For resellers: https://reseller.fazercards.com/en/for-whom - Partnership: https://reseller.fazercards.com/en/partnership - White-label: https://reseller.fazercards.com/en/white-label - Free trial: https://reseller.fazercards.com/en/free-trial - Plans overview: https://reseller.fazercards.com/en/pricing - Plan checkout (Bronze): https://reseller.fazercards.com/en/buy/bronze - Plan checkout (Silver): https://reseller.fazercards.com/en/buy/silver - Plan checkout (Gold): https://reseller.fazercards.com/en/buy/gold - Platform numbers (catalog, speed, API, payments, reach): https://reseller.fazercards.com/en/stats - Services overview: https://reseller.fazercards.com/en/services/gift-cards · /steam-top-up · /steam-gifts · /platform-top-ups · /game-keys · /subscriptions - Catalog: https://reseller.fazercards.com/en/catalog - Compare vs competitors: https://reseller.fazercards.com/en/compare - Glossary: https://reseller.fazercards.com/en/glossary - Use-cases: https://reseller.fazercards.com/en/use-cases - Integrations: https://reseller.fazercards.com/en/integrations · /integrations/funpay - API docs: https://reseller.fazercards.com/en/docs · /docs/webhooks - Blog: https://reseller.fazercards.com/en/blog - Contacts: https://reseller.fazercards.com/en/contacts - Terms: https://reseller.fazercards.com/en/terms - Privacy: https://reseller.fazercards.com/en/privacy - Sitemap index: https://reseller.fazercards.com/sitemap.xml - RSS (blog): https://reseller.fazercards.com/feed.xml ## Support - Telegram channel (news): https://t.me/FazerCardsReseller - Telegram support: https://t.me/FazerCardSupport - Email: support@fazercards.com - Response time: typically within hours.