Knowledge base
Get folder
Get a single folder.
GET
https://app.elunos.ai/api/v1/knowledge/folders/{id}Returns one folder. If the ID is unknown, the API answers 404.
Path parameters
iduuidPflichtID of the folder.
Example
curl https://app.elunos.ai/api/v1/knowledge/folders/019f94f8-0a1b-7c2d-8e3f-4a5b6c7d8e9f \
-H "Authorization: Bearer np_xxxxxxxx"Response
{
"data": {
"id": "019f94f8-0a1b-7c2d-8e3f-4a5b6c7d8e9f",
"name": "Öffnungszeiten und Anfahrt",
"parent_id": null,
"documents_count": 4,
"sync_status": "synced",
"sync_error": null,
"created_at": "2026-09-01T08:55:00+02:00",
"updated_at": "2026-09-01T08:55:00+02:00"
}
}