How to Connect
- Subscribe to one Plan from hereSee Plans
- Copy your API key from hereGet API Key
- Try your first request
curl -X POST "https://arejz.jojapi.net/chat/completions" \
--header "X-JoJAPI-Key: YOUR_API_KEY" \
--data '{
"model": "gpt-4o-mini",
"stream": false,
"messages": [
{
"role": "user",
"content": "How many days in 3 weeks."
}
]
}'
0
Total Models
0
Companies
Model copied to clipboard! 📋
You can integrate the API using the official OpenAI libraries for Python and Node.js, as shown below
const openai = new OpenAI({
apiKey: "YOUR_API_Key",
baseURL: "https://arejz.jojapi.net"
});
const completion = await openai.chat.completions.create({
model: "gpt-4o",
messages: [
{
role: "user",
content: "Hello",
},
],
});
console.log(completion.choices[0].message.content);