Skip to main content
GET
/
agent
/
threads
/
{thread_id}
/
history
Get History
curl --request GET \
  --url https://app.aseed.ai/custdev/agent/threads/{thread_id}/history \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "thread_id": "<string>",
    "message_type": "user",
    "content": "<string>",
    "parts": [
      {}
    ],
    "llm_model": "fast",
    "mode": "normal",
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

thread_id
string
required

Response

Successful Response

id
string
required
thread_id
string
required
message_type
enum<string>
required
Available options:
user,
assistant
content
string
required
parts
Parts · object[] | null
llm_model
enum<string> | null
Available options:
fast,
thinking
mode
enum<string> | null
Available options:
normal,
interview_guide,
research_context,
documentation
created_at
string<date-time> | null