Get company thesis snapshots
get_company_thesis_snapshotsRead what the canonical company thesis looked like at earlier points in time, for example on the date of a decision.
When to use it
Read what the canonical company thesis looked like at earlier points in time, for example on the date of a decision.
Use company context first, then thesis, claims, reviews, and evidence gaps.
Company thesis context, claims, reviews, and evidence health signals.
Avoid using it when
The ticker is not saved in Prism or the task only needs generic market data.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View full registry notes
Return point-in-time snapshots of a company's canonical thesis file (one-line thesis, bull/base/bear cases, conviction, risks, catalysts, active claim counts) recorded each time an applied Research Delta changed it. Pass asOf to read the thesis as it stood on a date. Use when: Read what the canonical company thesis looked like at earlier points in time, for example on the date of a decision.
View JSON Schema
{
"type": "object",
"properties": {
"ticker": {
"type": "string",
"minLength": 1,
"maxLength": 12
},
"companyId": {
"type": "string",
"format": "uuid"
},
"asOf": {
"type": "string",
"format": "date-time"
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 10
}
},
"additionalProperties": false
}