FoxReload distributor — पहले order तक 1 घंटे में
यदि आप एक reseller, marketplace, या fintech platform हैं और digital goods (गेम टॉप-अप, गिफ्ट कार्ड, eSIM) को थोक भाव पर खरीदना चाहते हैं — FoxReload पर onboarding 1 घंटे में हो जाता है। यह guide step by step।
क्या आपको चाहिए
- Legal entity (या sole proprietor with valid tax ID)।
- Initial deposit: $500 USD minimum (USDT, wire, या card)।
- End-customer use-case: B2C reseller, marketplace, या B2B aggregator।
- 1 घंटा।
Step 1: Signup (5 minutes)
- foxreload.com पर जाएं → "Get API Access" बटन।
- Business email, company name, country, monthly volume estimate भरें।
- Email verification करें।
- Welcome email में dashboard link मिलेगा।
Step 2: KYC verification (15 minutes)
- Dashboard → Verification सेक्शन।
- Documents upload करें:
- Certificate of Incorporation (या equivalent)।
- Beneficial owner ID (passport scan)।
- Bank statement (last 3 months, prove operating)।
- आम तौर पर automated KYB system से 10–15 मिनट में approval मिलती है।
बड़े volume distributors (>$10k/month) के लिए — manual review में 2–4 घंटे लगते हैं।
Step 3: Deposit funds (10 minutes)
| Method | Speed | Fee |
|---|---|---|
| USDT (TRC20/ERC20) | 1–5 min | 0% |
| Wire transfer | 1–2 business days | $25 flat |
| Credit card | Instant | 2.5% |
| SBP / UPI | Instant | 0.5% |
Recommended: USDT — fastest और cheapest। ERC20 की gas fees ज़्यादा हो सकती हैं, TRC20 cheaper है।
Step 4: Get API key (2 minutes)
- Dashboard → API।
- Create New Key click करें।
- नाम दें (e.g. "Production-API")।
- Key को safely save करें — दुबारा reveal नहीं होगी। Optional: IP-allowlist set करें।
Step 5: First test order (10 minutes)
curl "https://public-api.foxreload.com/api/categories/?limit=5" \
-H "X-API-Key: YOUR_KEY"
Catalog से कोई एक cheap product choose करें, उसका id (यही itemId है) note करें:
curl -X POST https://public-api.foxreload.com/api/orders/ \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"items": [{"itemId": "product_01k...", "quantity": 1}]}'
Order create होने के बाद status poll करें जब तक completed न हो:
curl "https://public-api.foxreload.com/api/orders/{order_id}" \
-H "X-API-Key: YOUR_KEY"
completed status पर items[].externalData में codes मिलते हैं। FoxReload में webhooks नहीं हैं — polling ही standard approach है।
Step 6: Order polling setup (10 minutes)
Production में जाने के लिए — order-status polling loop implement करें।
# हर 3-5 seconds में poll करें जब तक status completed/failed/cancelled न हो
while true; do
STATUS=$(curl -s "https://public-api.foxreload.com/api/orders/{order_id}" \
-H "X-API-Key: YOUR_KEY" | jq -r '.status')
echo "Status: $STATUS"
if [[ "$STATUS" == "completed" || "$STATUS" == "failed" || "$STATUS" == "cancelled" ]]; then
break
fi
sleep 3
done
अब आप production में हैं
पहला live order place करें — एक real customer transaction। हमारी recommendation:
- Start small: पहले हफ्ते $500–$1000 USD volume।
- Monitor delivery success rate: 95%+ होना चाहिए।
- Set up retry logic: failed orders के लिए — retry से पहले
GET /api/orders/में existing order check करें (double-buy avoid करने के लिए)। - Configure pricing engine: wholesale price + 15–35% markup। Prices
GET /api/products/{id_or_slug}से pull करें।
Pricing tiers
| Monthly volume | Discount on wholesale price |
|---|---|
| $500–$5,000 | Standard pricing |
| $5,000–$25,000 | 1.5% volume rebate |
| $25,000–$100,000 | 3% volume rebate |
| $100,000+ | Custom pricing — sales से बात करें |
FoxReload पर distributor onboarding सबसे fast है B2B industry में — 1 hour में आप 900+ SKUs के पूरे catalog तक access पा लेते हैं। sales@foxreload.com पर कोई questions हों तो लिखें।
