Integrate platform fee breakdown, FX spread calculations, optimal payout routing, and tax set-asides directly into your apps and tools.
Free tier provides 50 requests per 24-hour window. No credit card required. Works with API Key header or client IP identification.
Fetch live and cached fee rates for supported freelance platforms (Upwork, Fiverr, Wise, Payoneer, Stripe, PayPal, Deel, etc.) and FX rates.
curl -X GET "https://www.baznek.com/api/v1/rates" \
-H "X-API-Key: YOUR_API_KEY"
Calculate gross-to-net payout breakdown, platform cut, FX spread loss, fixed fees, and savings alternatives.
curl -X POST "https://www.baznek.com/api/v1/calculate" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"amount": 1000,
"platform": "upwork",
"payoutMethod": "payoneer",
"sourceCurrency": "USD",
"targetCurrency": "EUR"
}'
Estimate self-employment tax withholding and income tax reserves based on freelancer destination country.
curl -X POST "https://www.baznek.com/api/v1/tax-estimate" \
-H "Content-Type: application/json" \
-d '{
"grossAmount": 5000,
"destinationCountry": "US",
"clientLocation": "US"
}'
Query current API key request quota, remaining daily allowance, and window reset timestamp.
curl -X GET "https://www.baznek.com/api/v1/limits" \
-H "Authorization: Bearer YOUR_API_KEY"