Skip to main content
GET
/
v1
/
folders
/
{id}
/
documents
Get folder documents
curl --request GET \
  --url http://localhost:3000/v1/folders/{id}/documents \
  --header 'Authorization: <api-key>'
{
  "documents": [
    {
      "id": "<string>",
      "title": "<string>",
      "content": "<string>",
      "folderId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key (sk...)

Path Parameters

id
string
required

Folder ID

Response

List of documents in the folder

documents
object[]