Free LLM Inference.
No Auth. No Limits.
OpenAI-compatible API you can start using right now. No accounts, no API keys, no rate limits. Just send a request.
How it works
Three steps. No signup.
Pick a model
Check /v1/models for the list of available models.
We provide access to various open and commercial LLMs.
Send a request
Use the standard OpenAI chat completions format. Point any compatible library or tool at our endpoint. Streaming supported.
That's it
No API keys, no OAuth, no rate limits, no waiting lists. Just
point your client at https://logfare.logorhythms.dev/v1 and go.
Quickstart
Copy, paste, run.
# Chat completion curl https://logfare.logorhythms.dev/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{ "model": "your-model-id", "messages": [ {"role": "user", "content": "Hello!"} ] }'
from openai import OpenAI client = OpenAI( base_url="https://logfare.logorhythms.dev/v1", api_key="not-needed", # anything works ) response = client.chat.completions.create( model="your-model-id", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)
About Logfare
A project by Logorhythms.
Logfare is operated by Logorhythms, an independent research and engineering group focused on AI infrastructure and open tooling.
We run this as a free, community resource. There are no uptime guarantees—this is provided as-is. In return for free access, all API traffic is logged for research and data purposes. If that's not for you, that's okay — but please read the Terms and Privacy Policy before using the service.