Swift AI API Documentation

Access a wide range of powerful AI models seamlessly through the Swift AI API. Integrate cutting-edge AI capabilities including OpenAI 🤖, DeepSeek 🔍, Claude 🧠, Gemini 🌟, and Meta LLaMA 🦙 models with ease.
Subscribe Now

How to Connect

  1. Subscribe to one Plan from hereSee Plans
  2. Copy your API key from hereGet API Key
  3. Try your first request
    1curl -X POST "https://arejz.jojapi.net/chat/completions" \
    2  --header "X-JoJAPI-Key: YOUR_API_KEY" \
    3  --data '{
    4    "model": "gpt-4o-mini",
    5    "stream": false,
    6    "messages": [
    7      {
    8        "role": "user",
    9        "content": "How many days in 3 weeks."
    10      }
    11    ]
    12  }'

🤖 Supported AI Models

Discover and copy model identifiers for your AI applications

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