Quick Start
Get started with Jobim.ai
in under 5 minutes. Our API is fully compatible with OpenAI, so you can use the same SDKs and code you already know.
1
Get Your API Key
First, create an account and get your API key from the dashboard:
Dashboard
Open Dashboard →Navigate to API Keys in your dashboard and create a new key. Keep this secure — it provides full access to your account.
Terminal
export JOBIM_API_KEY="sdk-jobim-your_api_key_here"
2
Install SDK
Node.js / TypeScript
npm install openai
Python
pip install openai
3
Make Your First Call
Use the OpenAI SDK with Jobim.ai's base URL:
JavaScript / TypeScript
import OpenAI from 'openai';
const openai = new OpenAI({
apiKey: process.env.JOBIM_API_KEY,
baseURL: 'https://api.jobim.ai/v1',
});
async function main() {
const completion = await openai.chat.completions.create({
model: 'jobim-jfactor-utility',
messages: [
{ role: 'user', content: 'Explain quantum computing in simple terms' }
],
});
console.log(completion.choices[0].message);
}
main();Python
from openai import OpenAI
client = OpenAI(
api_key="your_jobim_api_key",
base_url="https://api.jobim.ai/v1"
)
completion = client.chat.completions.create(
model="jobim-jfactor-utility",
messages=[
{"role": "user", "content": "Explain quantum computing in simple terms"}
]
)
print(completion.choices[0].message)🎉 You're All Set!
You've just made your first call to the most efficient AI inference platform. Next, explore our models and features: