An OpenAI-compatible inference endpoint.
The server supplies its single available model automatically. Omit the model field, or use default when a client requires one.
Send the API key as a bearer token:
curl https://inference.lulzx.space/v1/chat/completions -H "Authorization: Bearer $API_KEY" -H "Content-Type: application/json" -d '{
"messages": [{"role": "user", "content": "Hello"}],
"max_tokens": 256
}'
Python:
from openai import OpenAI
client = OpenAI(
base_url="https://inference.lulzx.space/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="default",
messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)
POST /v1/chat/completionsPOST /v1/completionsPOST /v1/responsesPOST /v1/messagesGET /v1/models returns the neutral identifier defaultLimit: 30 requests per minute per address, 2 concurrent inference requests.
| Requests | 1 |
|---|---|
| Successful requests | 1 |
| Input tokens processed | 25 |
| Output tokens served | 14 |
| Total tokens processed | 39 |
| Counting since | 2026-09-05T16:39:18.689438+00:00 |
| Last request | 2026-09-05T16:40:29.230054+00:00 |
This service is provided as-is and may be unavailable when the inference host is offline.