Get all added public knowledge
Example Requests
curl -X GET \
https://api.rememberizer.ai/api/v1/common-knowledge/subscribed-list/ \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
Response Format
[
{
"id": 1,
"num_of_subscribers": 76,
"publisher_name": "Rememberizer AI",
"published_by_me": false,
"subscribed_by_me": true,
"size": 66741,
"created": "2023-01-15T14:30:00Z",
"modified": "2023-05-20T09:45:12Z",
"priority_score": 2.053,
"name": "Rememberizer Docs",
"image_url": "https://example.com/images/rememberizer-docs.png",
"description": "The latest documentation and blog posts about Rememberizer.",
"api_key": null,
"is_sharing": true,
"memento": 159,
"document_ids": [1234, 5678, 9012]
}
]
This endpoint retrieves a list of all public knowledge (also known as common knowledge) that the current user has subscribed to. Each item includes metadata about the knowledge source, such as publication date, size, and associated documents.
Last updated