curl --request GET \
--url https://api.boostgpt.co/v1/bot/chat/read \
--header 'Authorization: Bearer <token>'{
"total": 123,
"conversation": [
{
"uuid": "<string>",
"chat_id": "<string>",
"content": "<string>",
"role": "user",
"model": "<string>",
"complexity": "<string>",
"reasoning_type": "<string>",
"estimated_time_ms": "<string>",
"estimated_cost": "<string>",
"confidence": "<string>",
"channel": "<string>",
"credit_used": "<string>",
"confidence_score": "<string>",
"tokens": 123,
"upvotes": 123,
"downvotes": 123,
"reasoning": {},
"preference": {
"model": "<string>",
"maxTokens": 123,
"complexity": "<string>",
"reasoningType": "<string>"
},
"sources": [
{
"url": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"title": "<string>",
"favicon": "<string>",
"source_id": "<string>",
"citation_number": 123
}
],
"updated_at": "2023-11-07T05:31:56Z",
"user": {
"uuid": "<string>",
"email": "<string>",
"name": "<string>",
"avatar": "<string>",
"avatar_link": "<string>"
},
"isToolExecuting": true
}
],
"pagination": {
"page": 123,
"per_page": 123,
"total": 123,
"total_pages": 123
}
}Fetch messages from a specific chat conversation
curl --request GET \
--url https://api.boostgpt.co/v1/bot/chat/read \
--header 'Authorization: Bearer <token>'{
"total": 123,
"conversation": [
{
"uuid": "<string>",
"chat_id": "<string>",
"content": "<string>",
"role": "user",
"model": "<string>",
"complexity": "<string>",
"reasoning_type": "<string>",
"estimated_time_ms": "<string>",
"estimated_cost": "<string>",
"confidence": "<string>",
"channel": "<string>",
"credit_used": "<string>",
"confidence_score": "<string>",
"tokens": 123,
"upvotes": 123,
"downvotes": 123,
"reasoning": {},
"preference": {
"model": "<string>",
"maxTokens": 123,
"complexity": "<string>",
"reasoningType": "<string>"
},
"sources": [
{
"url": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"title": "<string>",
"favicon": "<string>",
"source_id": "<string>",
"citation_number": 123
}
],
"updated_at": "2023-11-07T05:31:56Z",
"user": {
"uuid": "<string>",
"email": "<string>",
"name": "<string>",
"avatar": "<string>",
"avatar_link": "<string>"
},
"isToolExecuting": true
}
],
"pagination": {
"page": 123,
"per_page": 123,
"total": 123,
"total_pages": 123
}
}Enter your API key
Project ID
Agent ID
Chat ID
Page number
Items per page
Chat history retrieved successfully
Total number of messages
Show child attributes
Message unique identifier
Chat conversation ID
Message content
Message role
user, system AI model used for this message
Message complexity level
Type of reasoning used (e.g., standard, interactive, stepwise, react)
Estimated processing time in milliseconds
Estimated cost
Confidence level
Communication channel (e.g., web, api)
Credits consumed
Confidence score percentage
Number of tokens used
Number of upvotes
Number of downvotes
Detailed reasoning information
Sources referenced in the response
Show child attributes
Source URL
Source tags
Source type (e.g., website)
Source title
Source favicon URL
Source identifier
Citation number
Last update timestamp
Whether a tool is currently executing
Was this page helpful?