Skip to content

Free OpenAI-compatible API providing access to powerful AI models. No registration required, completely free to use. πŸ”₯

Notifications You must be signed in to change notification settings

Mr-Abood/GPTFree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

28 Commits
Β 
Β 
Β 
Β 

Repository files navigation

Algion - Free OpenAI-compatible API

πŸš€ Access powerful AI models through our OpenAI-compatible API. Completely free and ready to use.

Overview

Algion provides a free alternative to OpenAI's API, offering access to advanced AI models without any cost. Our API is fully compatible with OpenAI's client libraries, making it easy to integrate into your existing projects.

Quick Start

API Configuration

  • Base URL: https://api.algion.dev/v1
  • API Key: 123123

Installation

pip install openai

Basic Usage

import openai

client = openai.OpenAI(
    api_key="123123",
    base_url="https://api.algion.dev/v1"
)

response = client.chat.completions.create(
    model="gpt-4.1",
    messages=[
        {"role": "user", "content": "Hello! How are you?"}
    ]
)

print(response.choices[0].message.content)

JavaScript/Node.js Example

import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: '123123',
  baseURL: 'https://api.algion.dev/v1',
});

const response = await client.chat.completions.create({
  model: 'gpt-4.1',
  messages: [{ role: 'user', content: 'Hello! How are you?' }],
});

console.log(response.choices[0].message.content);

cURL Example

curl -X POST "https://api.algion.dev/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer 123123" \
  -d '{
    "model": "gpt-4.1",
    "messages": [{"role": "user", "content": "Hello! How are you?"}]
  }'

Available Models

  • gpt-5-mini
  • gpt-4.1
  • gpt-4o
  • gpt-4o-mini
  • gpt-4-0125-preview
  • gpt-4
  • gpt-3.5-turbo
  • More models coming soon!

Features

  • βœ… 100% Free - No hidden costs or rate limits
  • βœ… OpenAI Compatible - Drop-in replacement for OpenAI API
  • βœ… No Registration - Start using immediately
  • βœ… Active Development - Regular updates and new models

API Endpoints

All endpoints follow OpenAI's API specification:

  • POST /v1/chat/completions - Chat completions
  • POST /v1/models - List available models
  • More endpoints coming soon!

Rate Limits

Currently, there are no strict rate limits, but we ask users to be reasonable with their usage to ensure the service remains available for everyone.

Status & Updates

This project is currently in Beta. Join our Telegram channel to stay updated on:

  • New model releases
  • Feature announcements
  • Service updates
  • Community discussions

Contributing

We welcome contributions! Whether it's bug reports, feature requests, or code contributions, feel free to get involved.

Support

Disclaimer

This service is provided as-is. While we strive for high availability, please consider this when building production applications.


⭐ Star this repo if you find it useful!

Made with ❀️ for the developer community

Star History

Star History Chart

About

Free OpenAI-compatible API providing access to powerful AI models. No registration required, completely free to use. πŸ”₯

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •