aineron.net
Documentation/API Playground

API Playground

Test API requests directly in the browser — no curl or Postman needed

Authorization

Current browser session is used

Model and Parameters

1.0

Messages

Response

Fill in the request and click 'Execute'

curl command
curl https://aineron.net/api/v1/chat/completions \
  -H "Cookie: sessionid=..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o",
    "messages": [
      {
        "role": "user",
        "content": ""
      }
    ],
    "temperature": 1,
    "max_tokens": 2048
  }'