ceo.ca APIceo.ca ↗
Access CEO.ca discussion threads, popular posts, and trending stocks via API. Retrieve engagement scores, post content, price quotes, and channel categories.
curl -X GET 'https://api.parse.bot/scraper/21ba56c5-84da-4f86-a937-a098c1c6868e/get_popular_posts?limit=3' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetch the most popular posts across all channels on CEO.ca. Returns posts ordered by engagement score descending. Supports pagination via the until parameter.
| Param | Type | Description |
|---|---|---|
| limit | integer | Maximum number of posts to fetch. |
| until | integer | Timestamp (milliseconds since epoch) to paginate from. Posts older than this timestamp will be returned. |
{
"type": "object",
"fields": {
"posts": "array of post objects containing spiel (content), name (author), timestamp, votes, score, parent_channel, spiel_id, and engagement metadata"
},
"sample": {
"data": {
"posts": [
{
"name": "@ZR1",
"score": 6,
"spiel": "Double up. Then your average is $1.20",
"votes": 5,
"channel": "popular",
"featured": false,
"spiel_id": "806b8c0746b2",
"verified": false,
"timestamp": 1778722139353,
"boost_count": 0,
"booster_count": 0,
"parent_channel": "qimc"
}
]
},
"status": "success"
}
}About the ceo.ca API
The CEO.ca API exposes 3 endpoints covering discussion threads, popular posts, and trending stocks from the CEO.ca investment community. The get_discussion_thread endpoint returns channel-specific post feeds for any stock ticker or named topic, while get_trending_stocks delivers live price quotes alongside company details and channel category groupings such as commodities and crypto.
Endpoints and Data Coverage
The get_popular_posts endpoint returns site-wide posts ranked by engagement score in descending order. Each post object includes spiel (the post body), name (author), timestamp, votes, score, parent_channel, spiel_id, and an engagement field. Pagination is handled via the until parameter, which accepts a millisecond epoch timestamp — pass the timestamp of the last post received to page backward through older content. An optional limit parameter controls how many posts are returned per request.
Channel-Level Discussion Threads
The get_discussion_thread endpoint accepts a required channel parameter — a stock ticker such as eqx, or a named channel like gold, silver, boardroom, or index — and returns posts in reverse chronological order. Response objects carry the same core fields as popular posts (spiel, name, timestamp, votes, score, spiel_id, engagement) along with a top-level channel string confirming which channel was queried. The same until-based pagination applies.
Trending Stocks and Channel Categories
The get_trending_stocks endpoint requires no inputs and returns three collections: categories (grouped channel arrays covering commodities, crypto, and similar segments, each with an id and a channels array), all_featured (featured channels with name and type), and trending_stocks (objects carrying channel, symbol, title, a quote block with price data, and a company_details block). This endpoint is the fastest way to identify which tickers are currently generating activity on the platform.
- Track engagement spikes on a specific stock ticker by polling
get_discussion_threadfor risingscorevalues. - Aggregate site-wide sentiment signals using
votesandengagementfields fromget_popular_posts. - Build a watchlist of momentum tickers by parsing
symbolandquotefields fromget_trending_stocks. - Monitor named topic channels like
boardroomorgoldfor community discussion about macro themes. - Page through historical post activity on a channel using the
untiltimestamp pagination parameter. - Categorize tickers by asset class using the
categoriesarray returned byget_trending_stocks. - Identify top contributors on a channel by collecting unique
namevalues across paginated thread responses.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does CEO.ca have an official developer API?+
What does the `get_trending_stocks` endpoint include in the `quote` field?+
quote block within each trending stock object contains price data for that ticker. The company_details block accompanies it with additional descriptive information about the issuer. The endpoint requires no input parameters and always returns the current trending snapshot.How does pagination work across the post endpoints?+
get_popular_posts and get_discussion_thread paginate via the until parameter, which takes a millisecond epoch timestamp. Submit the timestamp value from the oldest post in your current result set to retrieve the next page of older posts. The limit parameter caps how many posts are returned per call.Does the API expose private messages, user profiles, or account-level data from CEO.ca?+
Can I retrieve historical post archives going back years on a given channel?+
until lets you step backward through older posts on a channel, but very deep historical archives may not be fully accessible. The endpoints reflect what is currently retrievable from the public channel feed. You can fork this API on Parse and revise it to extend the pagination depth or add batch-collection logic for longer historical ranges.