Skip to content

iamdarus/instantapi-sdks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

InstantAPI SDKs

Official JavaScript/TypeScript and Python SDKs for InstantAPI — 6 AI tasks, one API, $0.50/call.

SDKs

Language Directory Install
JavaScript/TypeScript /javascript npm install instantapi-sdk
Python /python pip install instantapi-sdk

Quick Start

JavaScript/TypeScript

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);

Python

from instantapi import InstantAPI

api = InstantAPI("ia_live_your_key")

result = api.summarize("Your long article text here...")
print(result["data"])

Features

  • 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)

Documentation

Full API reference at instantapis.net/docs

License

MIT

About

Official JavaScript/TypeScript and Python SDKs for InstantAPI

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors