> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sajuapi.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# 내 사주 vs 전체 평균

> 동일 일간 사용자 대비 성과 비교

같은 일간(日干)을 가진 사용자들의 평균 성과와 비교합니다.

## 요청

<ParamField query="dayMaster" type="string" required>
  일간 한자 (예: `庚`)
</ParamField>

## 응답

```json theme={null}
{
  "success": true,
  "data": {
    "dayMaster": "庚",
    "comparisons": [
      { "label": "평균 수익률", "mine": "+3.2%", "average": "+1.8%", "better": true },
      { "label": "거래 빈도", "mine": "12회/주", "average": "8회/주", "better": true },
      { "label": "평균 보유기간", "mine": "14일", "average": "21일", "better": false },
      { "label": "승률", "mine": "58%", "average": "52%", "better": true }
    ],
    "summary": "같은 庚金 일간 중 상위 23%의 성과입니다."
  }
}
```

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.sajuapi.dev/v1/analytics/comparison?dayMaster=庚" \
    -H "X-API-Key: your-api-key"
  ```
</RequestExample>
