• Getting Started
  • Mind Reasoner API
    • SOC 2, HIPAA, & GDPR
LogoLogo
Login
LogoLogo
Login
Mind Reasoner APIAPI Reference

GET
https://app.mindreasoner.com/api/public/v1/minds/:mindId/snapshots/:snapshotId/status
GET
/api/public/v1/minds/:mindId/snapshots/:snapshotId/status
1curl https://app.mindreasoner.com/api/public/v1/minds/123e4567-e89b-12d3-a456-426614174000/snapshots/123e4567-e89b-12d3-a456-426614174003/status \
2 -H "Authorization: Bearer <token>"
Try it
200Retrieved
1{
2 "id": "123e4567-e89b-12d3-a456-426614174003",
3 "mindId": "123e4567-e89b-12d3-a456-426614174000",
4 "status": "completed",
5 "startedAt": "2025-01-15T10:00:00.000Z",
6 "completedAt": "2025-01-15T10:05:00.000Z"
7}
Was this page helpful?
Previous
Built with
Retrieves the current processing status of a memory bank snapshot
Get memory bank snapshot status

Authentication

AuthorizationBearer

API key passed as Bearer token in Authorization header (e.g., “Authorization: Bearer YOUR_API_KEY”)

Path Parameters

mindIdstringRequiredformat: "uuid"
snapshotIdstringRequiredformat: "uuid"

Response

Successful response with assessment status
idstring
Mind assessment ID
mindIdstring
Associated mind ID
statusstring

Processing status (e.g., pending, processing, completed, failed)

startedAtstring or nullformat: "date"
When processing started
completedAtstring or nullformat: "date"
When processing completed

Errors