Skip to Content

List My Published Topics

Get the list of topics I have published.

CLIInstall CLI

bash
longbridge my-topics

Request

HTTP MethodGET
HTTP URL/v1/content/topics/mine

Query Parameters

NameTypeRequiredDescription
pageint32NOPage number (1-based). Defaults to 1.
sizeint32NONumber of items per page, range 1–500. Defaults to 50.
topic_typestringNOFilter by type. One of article (long-form), post (short post). Omit to return all types.

Request Example

Response

Response Headers

  • Content-Type: application/json

Response Example

json
{
  "code": 0,
  "message": "success",
  "data": {
    "items": [
      {
        "id": "39304657",
        "title": "My Analysis on AAPL",
        "description": "A brief summary of my article...",
        "body": "Full markdown content here...",
        "topic_type": "article",
        "tickers": ["AAPL.US"],
        "hashtags": ["earnings"],
        "images": [],
        "likes_count": 12,
        "comments_count": 3,
        "views_count": 200,
        "shares_count": 1,
        "license": 1,
        "detail_url": "https://longbridge.com/topics/39304657",
        "author": {
          "member_id": "10086",
          "name": "John",
          "avatar": "https://example.com/avatar.jpg"
        },
        "created_at": "1742000000",
        "updated_at": "1742000000"
      }
    ]
  }
}

Response Status

StatusDescriptionSchema
200Successmy_topics_response
500Internal errorNone

Schemas

my_topics_response

NameTypeRequiredDescription
itemsobject[]trueTopic list
∟ idstringtrueTopic ID
∟ titlestringfalseTopic title (may be empty for short posts)
∟ descriptionstringfalsePlain-text summary of the topic body
∟ bodystringfalseFull topic body in Markdown format
∟ topic_typestringtrueTopic type. One of article, post
∟ tickersstring[]falseAssociated security symbols (e.g. ["AAPL.US", "700.HK"])
∟ hashtagsstring[]falseAssociated hashtag names
∟ imagesobject[]falseImages attached to the topic
∟∟ urlstringfalseOriginal image URL
∟∟ smstringfalseSmall thumbnail URL
∟∟ lgstringfalseLarge thumbnail URL
∟ likes_countint32falseNumber of likes
∟ comments_countint32falseNumber of comments
∟ views_countint32falseNumber of views
∟ shares_countint32falseNumber of shares
∟ licenseint32falseCopyright declaration. 0 = none, 1 = original, 2 = non-original
∟ detail_urlstringfalseLink to the topic detail page
∟ authorobjectfalseAuthor information
∟∟ member_idstringfalseAuthor member ID
∟∟ namestringfalseAuthor display name
∟∟ avatarstringfalseAuthor avatar URL
∟ created_atstringtrueUnix timestamp (seconds) when the topic was created
∟ updated_atstringfalseUnix timestamp (seconds) when the topic was last updated