MagickMind
  1. Mindspaces
  • Get started
    • Introduction
    • Quick Start
    • First API Call
  • Core Concepts
    • Projects
    • Corpus
    • Mindspaces
    • End-Users
    • Websocket
  • Authentication
    • Overview
    • OAuth Flow
    • API Keys
  • Guides
    • Creating a Corpus
    • Managing End-Users
  • SDK
    • Python
    • Go
  • API
    • v1
      • Auth
        • Login
        • Refresh Token
      • End-Users
        • Create End-User
        • Get End-User by ID
        • Update End-User
        • Query End-Users
        • Delete End-User
      • Project
        • Create Project
        • Get Project by ID
        • Get Project List
        • Update Project
        • Delete Project
      • Mindspaces
        • Create Mindspace
          POST
        • Update Mindspace
          PUT
        • Get Mindspace by ID
          GET
        • Get Mindspace List
          GET
        • Delete Mindspace
          DELETE
        • Get Mindspace Messages
          GET
        • Delete Mindspace
          DELETE
        • Add Mindspace Users by ID
          POST
      • Chat
        • Magick Mind Chat
      • Realtime
        • Websocket Subscribe
  1. Mindspaces

Get Mindspace Messages

Prod Env
https://api.magickmind.ai
Prod Env
https://api.magickmind.ai
GET
/v1/mindspaces/{id}/messages
Retrieve chat messages for a mindspace with pagination

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Query Params

Responses

🟢200OK
application/json
Successful response
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.magickmind.ai/v1/mindspaces//messages?after_id&before_id&limit' \
--header 'Authorization: Bearer <token>'
Response Response Example
{}
Previous
Delete Mindspace
Next
Delete Mindspace
Built with