Discover/CEO API
live

CEO APIceo.ca

Access CEO.ca discussion threads, popular posts, and trending stocks via API. Retrieve engagement scores, post content, price quotes, and channel categories.

Endpoint health
verified 3d ago
get_popular_posts
get_discussion_thread
get_trending_stocks
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the CEO 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.

Try it
Maximum number of posts to fetch.
Timestamp (milliseconds since epoch) to paginate from. Posts older than this timestamp will be returned.
api.parse.bot/scraper/21ba56c5-84da-4f86-a937-a098c1c6868e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/21ba56c5-84da-4f86-a937-a098c1c6868e/get_popular_posts?limit=10' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace ceo-ca-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""
CEO.ca Discussion & Trending Stocks
Discover trending mining/commodity stocks and read community discussion threads.
"""
from parse_apis.ceo_ca_api import Ceoca, Post, TrendingStock, Quote

ceoca = Ceoca()

# List currently trending stocks
for stock in ceoca.trendingstocks.list(limit=5):
    print(stock.symbol, stock.title, stock.quote.value, stock.quote.direction)

# Fetch popular posts across all channels
for post in ceoca.posts.popular(limit=10):
    print(post.spiel_id, post.name, post.votes, post.spiel[:80])

# Read discussion thread for the gold channel
for post in ceoca.channel("gold").posts(limit=10):
    print(post.timestamp, post.name, post.score, post.spiel[:60])
All endpoints · 3 totalmissing one? ·

Fetch the most popular posts across all channels on CEO.ca. Returns posts ordered by engagement score descending. Supports time-based pagination via the until parameter — pass the timestamp of the last post to load older posts.

Input
ParamTypeDescription
limitintegerMaximum number of posts to fetch.
untilintegerTimestamp (milliseconds since epoch) to paginate from. Posts older than this timestamp will be returned.
Response
{
  "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": "@knowforever77",
          "score": 6,
          "spiel": "3600 is more likely than not",
          "votes": 5,
          "channel": "popular",
          "featured": false,
          "spiel_id": "4f23ec318fb3",
          "verified": false,
          "timestamp": 1781047915047,
          "boost_count": 0,
          "parent_channel": "sum"
        }
      ]
    },
    "status": "success"
  }
}

About the CEO API

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.

Reliability & maintenanceVerified

The CEO API is a managed, monitored endpoint for ceo.ca — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ceo.ca changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official ceo.ca API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track engagement spikes on a specific stock ticker by polling get_discussion_thread for rising score values.
  • Aggregate site-wide sentiment signals using votes and engagement fields from get_popular_posts.
  • Build a watchlist of momentum tickers by parsing symbol and quote fields from get_trending_stocks.
  • Monitor named topic channels like boardroom or gold for community discussion about macro themes.
  • Page through historical post activity on a channel using the until timestamp pagination parameter.
  • Categorize tickers by asset class using the categories array returned by get_trending_stocks.
  • Identify top contributors on a channel by collecting unique name values across paginated thread responses.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does CEO.ca have an official developer API?+
CEO.ca does not publish a documented public developer API. This Parse API provides structured access to the data available on the platform.
What does the `get_trending_stocks` endpoint include in the `quote` field?+
The 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?+
Both 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?+
No. The API covers public post content, engagement metadata, channel categories, and trending stock data. Private messages and user profile pages are not included. You can fork this API on Parse and revise it to add an endpoint targeting any additional public data the current spec does not cover.
Can I retrieve historical post archives going back years on a given channel?+
Pagination via 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.
Page content last updated . Spec covers 3 endpoints from ceo.ca.
Related APIs in FinanceSee all →
thelayoff.com API
Monitor and search forum discussions about company layoffs, accessing post titles, content, author information, dates, and community reactions across TheLayoff.com. Browse through paginated results and dive into individual posts to read full reply threads and conversation details.
stocktwits.com API
Discover which stocks are generating the most buzz on Stocktwits by accessing real-time trending symbols along with company names, trending scores, current price data, and community sentiment summaries. Stay ahead of market conversations by monitoring what the investing community is actively discussing and trading.
explodingtopics.com API
Discover rapidly growing trends, emerging startups, and top-performing websites by filtering through trending topics by category and volatility. Programmatically access detailed trend analysis, related topics, blog coverage, and curated highlights to stay ahead of market movements.
insights.trendforce.com API
Access semiconductor and AI industry analysis articles from TrendForce Insights, browsing post listings and retrieving full article content organized into text sections and figures. Perfect for staying updated on tech industry trends and feeding structured article data into language models for analysis.
threads.com API
Search for posts and users on Threads by keyword to discover content, view engagement metrics like likes and replies, and explore user profiles with their media. Find trending discussions and connect with creators all in one search experience.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
marketbeat.com API
Track comprehensive stock market data including real-time overviews, analyst ratings, earnings reports, insider trades, and institutional ownership across thousands of companies. Search stocks, analyze financial statements and profitability metrics, monitor short interest, explore options chains, and stay updated with market headlines and competitor analysis.
money.tmx.com API
money.tmx.com API