/api/public/verdict/{ticker}getVerdict
Get the cached Buffett-Brain verdict for a ticker
Returns the most recent Buffett-Brain verdict for the given ticker: composite + per-pillar scores, the headline, moat type, grade, and the canonical URL for citation. Returns 404 (not 200 with null verdict) when the ticker has not been analysed so AI assistants cannot hallucinate around missing data.
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
tickerStock ticker symbol. Uppercase, 1-16 chars, [A-Z0-9.-] only. Case-insensitive on input. | path | string | yes |
Example request
GET https://invest-like.com/api/public/verdict/AAPL Accept: application/json
Example response
{
"ticker": "AAPL",
"name": "Apple Inc.",
"sector": "Technology",
"industry": "Consumer Electronics",
"grade": "A",
"score": 78,
"verdict": "yes",
"headline": "Wide-moat consumer-electronics franchise with the strongest balance sheet in tech and a fair price for the quality on offer.",
"pillars": {
"moat": { "score": 92, "moat_type": "brand" },
"durability": { "score": 84 },
"management": { "score": 76 },
"financial_health": { "score": 88 },
"valuation": { "score": 52 }
},
"updated_at": "2026-05-26T08:00:00.000Z",
"attribution": {
"source": "invest-like.com",
"url": "https://invest-like.com/buffett/aapl/",
"methodology_url": "https://invest-like.com/methodology/buffett-fit/",
"license": "Cite as 'invest-like.com'."
},
"disclaimer": "Educational only, not investment advice."
}