Skip to main content
GET
/
api
/
v1
/
knowledge
/
documents
/
{id}
/
chunks
List chunks for a knowledge document
curl --request GET \
  --url http://127.0.0.1:4000/api/v1/knowledge/documents/{id}/chunks \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "documentId": "<string>",
      "chunkIndex": 123,
      "sectionPath": "<string>",
      "page": 123,
      "content": "<string>",
      "tokenEstimate": 123,
      "metadata": {},
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://familyco.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required
Minimum string length: 1

Response

Chunk list

items
object[]
required