All SDKs share the same surface: transfers, webhooks, API keys, audit, signature verification, automatic retry and idempotency.
TypeScript / JavaScript
Python
Go
Rust
bash# Cargo.toml
[dependencies]
coffrify = "0.2"Java
java<!-- Maven -->
<dependency>
<groupId>com.coffrify</groupId>
<artifactId>coffrify</artifactId>
<version>0.2.0</version>
</dependency>Ruby
PHP
.NET
Common patterns
- Every SDK auto-retries on 5xx + 429 with exponential backoff.
- Every SDK auto-injects an Idempotency-Key on writes.
- Verification helpers accept either a single secret or a list (rotation grace).
- Cursor pagination through iterate(). Always prefer it over manual offset for large windows.