We're working hard to bring you a powerful API. Join Discord to be notified when it's ready!
The ISH API will provide programmatic access to our AI models and features
What you can expect from the ISH API
Simple, transparent pricing for developers
Here's how the API will work once it's available
import OpenAI from "openai";const openai = new OpenAI({ apiKey: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", baseURL: "http://api.ish.junioralive.in/v1",});async function run() { const res = await openai.chat.completions.create({ model: "openai/gpt-4o", messages: [{ role: "user", content: "How many r in strawberry?" }], }); console.log(res.choices[0].message.content);}from openai import OpenAIclient = OpenAI( api_key="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", base_url="http://api.ish.junioralive.in/v1")res = client.chat.completions.create( model="openai/gpt-4o", messages=[{"role": "user", "content": "How many r in strawberry?"}])print(res.choices[0].message.content)import requestsurl = "http://api.ish.junioralive.in/v1/chat/completions"headers = { "Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "Content-Type": "application/json"}payload = { "model": "openai/gpt-4o", "messages": [{"role": "user", "content": "How many r in strawberry?"}]}res = requests.post(url, headers=headers, json=payload)print(res.json()["choices"][0]["message"]["content"])curl -X POST http://api.ish.junioralive.in/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "model": "openai/gpt-4o", "messages": [{"role": "user", "content": "Say hi!"}] }'Secure your API requests with authentication tokens
Include your API key in the Authorization header of your requests.
Free tier includes 100 requests per day. Rate limit information will be included in response headers. Join our Discord to get your free API key!