GET api/Chat?cuIdx={cuIdx}&baseDay={baseDay}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| cuIdx | integer |
Required |
|
| baseDay | integer |
Default value is 90 |
Body Parameters
None.
Response Information
Resource Description
ChatPortfolioSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount | integer |
None. |
|
| HoldingCount | integer |
None. |
|
| LiquidationCount | integer |
None. |
|
| ProfitCount | integer |
None. |
|
| LossCount | integer |
None. |
|
| TotalProfitRate | decimal number |
None. |
|
| BaseDay | integer |
None. |
|
| PFLIdx | integer |
None. |
|
| EndDT | date |
None. |
|
| Name | string |
None. |
|
| Code | string |
None. |
|
| ProfitRate | decimal number |
None. |
|
| StartDT | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalCount": 1,
"HoldingCount": 2,
"LiquidationCount": 3,
"ProfitCount": 4,
"LossCount": 5,
"TotalProfitRate": 6.1,
"BaseDay": 7,
"PFLIdx": 8,
"EndDT": "2026-04-03T07:42:32.7209575+09:00",
"Name": "sample string 10",
"Code": "sample string 11",
"ProfitRate": 12.1,
"StartDT": "2026-04-03T07:42:32.7209575+09:00"
}
application/xml, text/xml
Sample:
<ChatPortfolioSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FinUp.Stock.Api.Models.Chat"> <BaseDay>7</BaseDay> <Code>sample string 11</Code> <EndDT>2026-04-03T07:42:32.7209575+09:00</EndDT> <HoldingCount>2</HoldingCount> <LiquidationCount>3</LiquidationCount> <LossCount>5</LossCount> <Name>sample string 10</Name> <PFLIdx>8</PFLIdx> <ProfitCount>4</ProfitCount> <ProfitRate>12.1</ProfitRate> <StartDT>2026-04-03T07:42:32.7209575+09:00</StartDT> <TotalCount>1</TotalCount> <TotalProfitRate>6.1</TotalProfitRate> </ChatPortfolioSummary>