curl -X GET "https://api.sajuapi.dev/v1/analytics/saju-twin?birthDate=1994-12-30&birthTime=17:01" \ -H "X-API-Key: your-api-key"
같은 사주를 가진 사용자들의 행동 분석
Documentation IndexFetch the complete documentation index at: https://docs.sajuapi.dev/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.sajuapi.dev/llms.txt
Use this file to discover all available pages before exploring further.
{ "success": true, "data": { "twinCount": 1247, "insight": "당신과 같은 사주를 가진 1,247명 중 오늘 매매에 참여한 비율은 42%예요. 평소보다 낮은 수치인데, 같은 사주를 가진 사람들도 오늘은 관망하고 있다는 뜻이에요.", "tradingBehavior": { "participationRate": 42, "buyRatio": 67, "sellRatio": 33, "interpretation": "매수 비중이 67%로 높은 편이에요. 같은 사주 투자자들은 오늘을 매수 기회로 보고 있어요." }, "topActions": [ { "action": "BTC 분할매수", "count": 234 }, { "action": "ETH 홀딩", "count": 189 }, { "action": "알트코인 관망", "count": 156 } ], "recommendation": "사주 쌍둥이들의 움직임을 참고하되, 당신의 오늘 운세와 함께 판단하세요." } }
function SajuTwinCard({ twin }) { return ( <div className="saju-twin-card"> <h3>👥 사주 쌍둥이 {twin.twinCount.toLocaleString()}명</h3> <p className="insight">{twin.insight}</p> <div className="behavior"> <span>오늘 매매 참여: {twin.tradingBehavior.participationRate}%</span> <span>매수 비중: {twin.tradingBehavior.buyRatio}%</span> </div> <p className="interpretation">{twin.tradingBehavior.interpretation}</p> </div> ); }