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.
Developer GuidesThreads APIAccount Management APIAnalytics API
Developer GuidesThreads APIAccount Management APIAnalytics API
  • Threads
    • GETList Threads
    • POSTCreate Thread
    • DELDelete Thread
    • PATCHUpdate Thread
    • GETList Messages
    • POSTSend Message
    • GETGet Thread Progress
    • DELCancel Thread Task
    • POSTUpload File
    • GETGet Artifact
    • GETStream Thread Events
LogoLogo
Threads

Get Thread Progress

GET
https://sandbox.api.boosted.ai/v2/threads/:thread_id/progress
GET
/v2/threads/:thread_id/progress
$curl https://sandbox.api.boosted.ai/v2/threads/thread_id/progress \
> -H "Authorization: Bearer <token>"
1{
2 "progress_data": {
3 "log": "string",
4 "status": "Complete"
5 }
6}
Get the current progress status of a thread task. This endpoint returns the progress information for a thread, including whether there is an active task running, the current status, and any progress indicators. Useful for thread state management when the SSE streaming connection was closed or not currently pushing new updates.
Was this page helpful?
Previous

Cancel Thread Task

Next
Built with

Authentication

AuthorizationBearer
OAuth2 access token obtained via token exchange.

Path parameters

thread_idstringRequired

Response

Successful Response
progress_dataobject or null
Data model for thread progress cache, storing both log message and task ID.

Errors

422
Unprocessable Entity Error