Monica Proxy API

This is a proxy service that converts Monica's service to ChatGPT-compatible API format.

API Endpoints

Example Usage

curl -X POST https://xxx-xxx.hf.space/hf/v1/chat/completions \
  -H "Authorization: Bearer YOUR_BEARER_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o-mini",
    "messages": [
      {
        "role": "user",
        "content": "Hello!"
      }
    ],
    "stream": true
  }'