π Access powerful AI models through our OpenAI-compatible API. Completely free and ready to use.
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.
- Base URL:
https://api.algion.dev/v1
- API Key:
123123
pip install openai
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)
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 -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?"}]
}'
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!
- β 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
All endpoints follow OpenAI's API specification:
POST /v1/chat/completions
- Chat completionsPOST /v1/models
- List available models- More endpoints coming soon!
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.
This project is currently in Beta. Join our Telegram channel to stay updated on:
- New model releases
- Feature announcements
- Service updates
- Community discussions
We welcome contributions! Whether it's bug reports, feature requests, or code contributions, feel free to get involved.
- Website: algion.dev
- Telegram: @algion
- Issues: Create an issue in this repository
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