Official examples to get you integrated fast. Pick your language and follow the steps.
Use environment variables
Never hardcode API keys. Use process.env or .env files.
Implement retry logic
Retry failed requests with exponential backoff: 1s, 2s, 4s.
Use webhooks for async
Don't poll — subscribe to transaction events via webhooks.
Verify signatures
Always verify X-Iascroft-Signature on webhook payloads.
Test in sandbox first
Validate your integration in sandbox before going live.