For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
DocumentationAPI ReferenceChangelog
DocumentationAPI ReferenceChangelog
  • API Reference
      • GETGet Research Objects
      • POSTCreate a Research Object
      • POSTCreate a Brainstorm Session
      • GETGet a Research Object
      • GETGet Research Result Content
      • GETGet Research Events
      • GETGet API research integrations
      • GETGet Research Updates
      • POSTCreate a Research Update
API ReferenceResearch

Get Research Updates

GET
https://api.caesar.xyz/research/:id/updates
GET
/research/:id/updates
$curl https://api.caesar.xyz/research/id/updates \
> -H "Authorization: Bearer <token>"
1[
2 {
3 "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
4 "ask_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
5 "update_content": "Initial data collection completed. Preparing for analysis phase.",
6 "files": [
7 "1d4f5e6a-8b7c-4d3e-9f2a-123456789abc"
8 ],
9 "created_at": "2024-01-15T09:30:00Z"
10 }
11]
Returns a list of updates for a research job.
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

idstringRequiredformat: "uuid"
Research job identifier.

Response

List of updates for the research job.
idstringformat: "uuid"
Unique identifier for the update.
ask_idstringformat: "uuid"
Research job this update belongs to.
update_contentstring
The update content.
fileslist of strings
File IDs attached to this update.
created_atdatetime
ISO 8601 timestamp when the update was created.

Errors

401
Unauthorized Error
404
Not Found Error
500
Internal Server Error