Skip to main content

content

Commands for querying monitored analyst content — tweets, YouTube videos, Substack articles, and transcripts.


traderbro content list

List monitored content items with filtering options.

Usage

traderbro content list [flags]

Flags

FlagTypeDefaultDescription
--analyststringFilter by analyst slug
--sourcestringFilter by source: twitter, youtube, substack
--typestringFilter by content type: tweet, video, article, transcript
--relevantboolfalseOnly content classified as market-relevant
--securitiesboolfalseOnly content that mentions securities
--sincestringContent published on or after (YYYY-MM-DD)

Examples

# Recent Twitter content from a specific analyst
traderbro content list --analyst noLimitGains --source twitter --limit 10 --json

# Market-relevant content mentioning securities since Jan 2025
traderbro content list --relevant --securities --since 2025-01-01 --json

# All YouTube videos
traderbro content list --source youtube --type video --json

Output (JSON mode)

{
"count": 150,
"results": [
{
"id": 501,
"content_type": "tweet",
"analyst_slug": "noLimitGains",
"title": "NVDA breaking out of consolidation...",
"published_date": "2025-03-15"
}
]
}

traderbro content get

Get full content detail including symbol mentions.

Usage

traderbro content get <id> [flags]

Examples

traderbro content get 501
traderbro content get 501 --json

Output (Table mode)

ID: 501
Title: NVDA breaking out of consolidation...
URL: https://twitter.com/...
Type: tweet
Analyst: noLimitGains
Published: 2025-03-15

Output (JSON mode)

{
"id": 501,
"title": "NVDA breaking out of consolidation...",
"url": "https://twitter.com/...",
"content_type": "tweet",
"analyst_slug": "noLimitGains",
"published_date": "2025-03-15"
}

Exit codes

CodeMeaning
0Success
2Authentication failure
3Content not found
4Validation error
5Network error