Example accountless setup
Ready to sendAccess without an account.
- API key
- mr-live-…Paste it into any OpenAI-compatible client.
- Dashboard link
- minirouter.sh/access#…Permanent. Save it with the key.
- Balance
- Prepaid crypto creditFrom $0.50 per deposit. Never expires.
- Account
- NoneNo signup, no KYC.
Both values are secrets. Save them before you pay.
first-request.py 1from openai import OpenAI2 3client = OpenAI(4 base_url="https://api.minirouter.sh/v1",5 api_key="mr-live-…",6)7 8client.chat.completions.create(9 model="meta/llama-3.3-70b",10 messages=[{"role": "user", "content": "ping"}],11 stream=True,12)
PythonUTF-8OpenAI-compatible