Changelog
Track the latest updates, new features, and improvements in Apara's platform and API.
Recent Updates
Stay up to date with the latest apara releases. Check this changelog regularly for new features, endpoint additions, bug fixes, and any breaking changes.
New Features
-
Added new
/v1/payoutsendpoint for initiating borderless payouts to 200+ countries. -
Introduced real-time webhook support for payout status updates.
Improvements
-
Enhanced Collections API with faster settlement times under 5 minutes.
-
Added support for 20+ new fiat currencies in Ramp product.
Bug Fixes
-
Fixed intermittent failures in multi-currency collections.
-
Resolved authentication issues with long-lived tokens.
// Example: New payouts endpoint
const response = await fetch('https://sandbox-api.aparatech.io/v1/payouts', {
method: 'POST',
headers: {
'Authorization': `Bearer ${YOUR_API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
amount: 1000,
currency: 'USD',
destination: 'user@example.com'
})
});
New Features
-
Launched
/v1/collections/linksendpoint to create customizable payment links. -
Added Ramp API for buying/selling digital assets with global payment methods.
Bug Fixes
-
Corrected payout retry logic for failed transactions.
-
Improved error handling in webhook deliveries.
Breaking Changes
-
Updated authentication to require
Bearerprefix inAuthorizationheader. -
Deprecated old
/v1/transfersendpoint; migrate to/v1/payouts.
New Features
- Integrated supported countries and tokens endpoints:
/v1/supported/countriesand/v1/supported/tokens.
Migration Guide
Update Headers
Update your API calls to use the new header format.
// Old
headers: { 'Authorization': YOUR_TOKEN }
// New
headers: { 'Authorization': `Bearer ${YOUR_TOKEN}` }
Replace Endpoint
Replace /v1/transfers with /v1/payouts.
Test Webhooks
Verify webhook signatures using the new HMAC-SHA256 method.
Explore Products
Payouts
Send payments globally with low fees and fast settlement.
Collections
Collect payments using links with real-time notifications.
Ramp
Buy and sell digital assets affordably.
Supported Countries
Full list of payout and collection destinations.
For migration assistance or questions about deprecations, contact support@apara.com.
Last updated 1 day ago
Built with Documentation.AI