Try our new Setup Skill to automatically integrate Hyperspell into your project
curl --request GET \
--url https://api.hyperspell.com/context-documents/tree/{tree_id}/progress \
--header 'Authorization: Bearer <token>'{
"tree_id": "<string>",
"status": "<string>",
"phase": "<string>",
"completed_docs": 123,
"total_docs": 123
}Return the generation progress for a single tree.
Live phase/counter data comes from the Temporal workflow query. Terminal trees and trees whose workflow is no longer queryable (e.g. completed workflows that have aged out, cron-driven refreshes) return just the DB-level status with no phase data.
curl --request GET \
--url https://api.hyperspell.com/context-documents/tree/{tree_id}/progress \
--header 'Authorization: Bearer <token>'{
"tree_id": "<string>",
"status": "<string>",
"phase": "<string>",
"completed_docs": 123,
"total_docs": 123
}Documentation Index
Fetch the complete documentation index at: https://docs.hyperspell.com/llms.txt
Use this file to discover all available pages before exploring further.
API Key or JWT User Token. If using an API Key, set the X-As-User header to act as a specific user. A JWT User Token is always scoped to a specific user.
Successful Response
Response shape for GET /context-documents/tree/{tree_id}/progress.
Was this page helpful?