curl --request GET \
--url https://api.boostgpt.co/v1/bot/source/readall \
--header 'Authorization: Bearer <token>'{
"sources": [
{
"id": "<string>",
"uuid": "<string>",
"title": "<string>",
"description": "<string>",
"source": "<string>",
"content": "<string>",
"type": "<string>",
"forget_after": "<string>",
"sync_frequency": "<string>",
"links": [
{
"url": "<string>",
"title": "<string>",
"tokens": 123,
"favicon": "<string>"
}
],
"tags": [
"<string>"
],
"tokens": 123,
"status": "<string>",
"synced_at": "2023-11-07T05:31:56Z",
"forget_after_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"page": 123,
"per_page": 123,
"total": 123,
"total_pages": 123
}
}Fetch a paginated list of all memory sources for an agent
curl --request GET \
--url https://api.boostgpt.co/v1/bot/source/readall \
--header 'Authorization: Bearer <token>'{
"sources": [
{
"id": "<string>",
"uuid": "<string>",
"title": "<string>",
"description": "<string>",
"source": "<string>",
"content": "<string>",
"type": "<string>",
"forget_after": "<string>",
"sync_frequency": "<string>",
"links": [
{
"url": "<string>",
"title": "<string>",
"tokens": 123,
"favicon": "<string>"
}
],
"tags": [
"<string>"
],
"tokens": 123,
"status": "<string>",
"synced_at": "2023-11-07T05:31:56Z",
"forget_after_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"page": 123,
"per_page": 123,
"total": 123,
"total_pages": 123
}
}Enter your API key
Project ID
Agent ID
Page number
Items per page
Memory sources retrieved successfully
Show child attributes
Memory source ID
Memory source unique identifier
Title of the memory source
Description of the memory source
The source URL or origin
The actual content or URL to fetch
Type of memory source (e.g., 'website', 'document', 'text')
Forget duration setting (e.g., 'never', '30d')
Sync frequency setting (e.g., 'never', 'daily', 'weekly')
Tags associated with the source
Total number of tokens across all content
Processing status (e.g., 'success', 'pending', 'failed')
Last sync timestamp
Timestamp when the source will be forgotten
Creation timestamp
Last update timestamp
Was this page helpful?