MagickMind

List the calling agent's episodes in a date window, newest first (end-user JWT). Dates are YYYY-MM-DD, inclusive.

GET
/v1/end-user/episodes/range

Authorization

EndUserAuth
AuthorizationBearer <token>

End-user JWT minted via POST /v1/end-users/tokens, sent as Authorization: Bearer <token>.

In: header

Query Parameters

date_start*string
date_end*string
mindspace_id?string
participant_id?string
limit?integer
Range1 <= value <= 200
Default50

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/end-user/episodes/range?date_start=string&date_end=string&limit=50"
{  "data": [    {      "entities": [        "string"      ],      "id": "string",      "mindspace_id": "string",      "participant_ids": [        "string"      ],      "subtopics": [        "string"      ],      "summarized_conversation": "string",      "topic": "string",      "what_to_avoid": "string",      "what_worked": "string"    }  ]}