Getting Started
API Reference
- GETPing Health
- GETGet Available Models
- POSTRetrieve Chunks
- POSTRetrieve Chunks Grouped
- POSTRetrieve Documents
- POSTBatch Get Documents
- POSTBatch Get Chunks
- POSTQuery Completion
- GETGet Chat History
- GETGet Available Models For Selection
- POSTAgent Query
- GETGet Usage Stats
- GETGet Recent Usage
- POSTGenerate Local Uri
- POSTGenerate Cloud Uri
- DELDelete Cloud App
- GETList Chat Conversations
- PATCHUpdate Chat Title
Documents
Folders
Workflows
model-config
Logs
Graph
Folders
List Folder Summaries
Return compact folder list (id, name, doc_count, updated_at).
GET
/
folders
/
summary
JavaScript
Copy
Ask AI
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const response = await client.folders.listSummaries();
console.log(response);
Copy
Ask AI
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"doc_count": 0,
"updated_at": "<string>"
}
]
Headers
Response
200
application/json
Successful Response
The response is of type FolderSummary · object[]
.
Was this page helpful?
JavaScript
Copy
Ask AI
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const response = await client.folders.listSummaries();
console.log(response);
Copy
Ask AI
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"doc_count": 0,
"updated_at": "<string>"
}
]
Assistant
Responses are generated using AI and may contain mistakes.