> ## 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.

# 사주별 포트폴리오

> 동일 일간 사용자들의 평균 포트폴리오 구성

같은 일간을 가진 사용자들의 평균 포트폴리오 구성을 조회합니다.

## 요청

<ParamField query="dayMaster" type="string" required>
  일간 한자
</ParamField>

## 응답

```json theme={null}
{
  "success": true,
  "data": {
    "dayMaster": "庚",
    "breakdown": [
      { "category": "BTC", "percentage": 45, "color": "#F7931A" },
      { "category": "ETH", "percentage": 25, "color": "#627EEA" },
      { "category": "알트코인", "percentage": 20, "color": "#00D395" },
      { "category": "스테이블", "percentage": 10, "color": "#26A17B" }
    ],
    "totalUsers": 12847
  }
}
```

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