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.
  • Workflows
    • Overview
  • Get Started
    • MCP Quick Start
    • API Quick Start
  • MCP Server
    • Overview
    • Installation
  • Direct API
    • Overview
    • Authentication
      • GETGet all minds
      • POSTCreate a new mind
      • GETSearch minds
      • GETGet mind by ID
      • PUTUpdate mind by ID
      • DELDelete mind by ID
      • POSTRun simulation
      • GETGet signed URL for artifact upload
      • GETGet memory bank snapshots
      • POSTCreate a memory bank snapshot
      • GETGet memory bank snapshot status
      • GETGet all tags
      • PUTUpdate a tag
      • DELDelete a tag
      • PUTSet tags for a mind
      • GETList simulations
      • GETGet a simulation
      • DELDelete a simulation
      • GETGet psychometrics for a snapshot
      • GETGet topic analysis for a snapshot
      • GETGet snapshot details
      • POSTCreate a snapshot link
      • DELDelete a snapshot
      • POSTLink a snapshot
      • POSTUnlink a snapshot
      • GETGet API Key Usage
      • POSTProxy a request
    • Error Handling
  • SDKs
  • Core Concepts
    • Minds, Snapshots, & Simulations
    • SOC 2, HIPAA, & GDPR
LogoLogo
LogoLogo
Direct APIAPI Reference

Get memory bank snapshot status

GET
https://api.reasoner.com/api/mindsim/minds/:mindId/snapshots/:snapshotId/status
GET
/api/mindsim/minds/:mindId/snapshots/:snapshotId/status
$curl https://api.reasoner.com/api/mindsim/minds/123e4567-e89b-12d3-a456-426614174000/snapshots/123e4567-e89b-12d3-a456-426614174003/status \
> -H "Authorization: Bearer <token>"
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}
Retrieves the current processing status of a memory bank snapshot
Was this page helpful?
Previous

Get all tags

Next
Built with

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

401
Unauthorized Error
404
Not Found Error