Sharelist Detail
Get sharelist detail including name, description, and constituent stocks.
SDK Links
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | integer | YES | Sharelist ID |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"id": 123,
"name": "AI Picks",
"description": "Top AI infrastructure stocks",
"securities": ["AAPL.US", "NVDA.US"]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | SharelistDetail |
| 400 | Bad request | None |
Schemas
SharelistDetailResponse
| Name | Type | Required | Description |
|---|---|---|---|
| sharelist | object | true | Sharelist information |
| scopes | object | false | Subscription scope info |
SharelistInfo
| Name | Type | Required | Description |
|---|---|---|---|
| id | integer | true | Sharelist ID |
| name | string | false | Name |
| description | string | false | Description |
| cover | string | false | Cover image URL |
| subscribers_count | integer | false | Number of subscribers |
| chg | string | false | Day change percentage |
| this_year_chg | string | false | Year-to-date change |
| subscribed | boolean | false | Whether subscribed |
| sharelist_type | integer | false | Type: 0=regular, 3=official, 4=industry |
| industry_code | string | false | Industry code |
| stocks | object[] | false | Constituent stocks, see SharelistStock |
SharelistScopes
| Name | Type | Required | Description |
|---|---|---|---|
| is_self | boolean | false | Whether the current user is the creator |
| subscription | boolean | false | Whether the current user is subscribed |

