Official JavaScript/TypeScript and Python SDKs for InstantAPI — 6 AI tasks, one API, $0.50/call.
| Language | Directory | Install |
|---|---|---|
| JavaScript/TypeScript | /javascript |
npm install instantapi-sdk |
| Python | /python |
pip install instantapi-sdk |
import InstantAPI from 'instantapi-sdk';
const api = new InstantAPI('ia_live_your_key');
const result = await api.summarize('Your long article text here...');
console.log(result.data);from instantapi import InstantAPI
api = InstantAPI("ia_live_your_key")
result = api.summarize("Your long article text here...")
print(result["data"])- 6 AI tasks: Summarize, Extract, Analyze, Translate, Sentiment, Code
- Batch API: Process up to 20 tasks in a single request
- Typed errors: Specific exceptions for auth, credits, and rate limits
- Zero dependencies (JS) / Minimal dependencies (Python:
requests)
Full API reference at instantapis.net/docs
MIT