SDKs & Libraries
Official and community SDKs for integrating Hypersave into your applications.
Official SDKs
⬡
JavaScript / TypeScript
Full-featured SDK for Node.js and browsers with TypeScript support.
npm install hypersave🐍
Python
Python SDK with async support and pandas integration.
pip install hypersaveQuick Comparison
| Feature | JavaScript | Python | REST API |
|---|---|---|---|
| Async Support | ✅ | ✅ | ✅ |
| Type Safety | ✅ | ✅ | - |
| Auto-retry | ✅ | ✅ | Manual |
| Rate Limiting | Built-in | Built-in | Manual |
| Streaming | ✅ | ✅ | ✅ |
REST API
All SDKs are built on top of our REST API. You can also use the API directly with any HTTP client:
curl -X POST https://api.hypersave.io/v1/save \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"content": "Hello, Hypersave!"}'See the cURL examples for more details.
Community SDKs
We welcome community contributions! If you've built an SDK for Hypersave, please let us know (opens in a new tab).
| Language | Repository | Status |
|---|---|---|
| Go | Coming soon | Planned |
| Ruby | Coming soon | Planned |
| PHP | Coming soon | Planned |
| Rust | Coming soon | Planned |
Getting Started
- Get your API key (opens in a new tab)
- Install your preferred SDK
- Follow the quickstart guide
All SDKs are open source and available on GitHub (opens in a new tab).