POST
/
batch
/
chunks
curl --request POST \
  --url http://localhost:8000/batch/chunks \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "document_id": "<string>",
    "chunk_number": 123,
    "score": 123
  }
]'
[
  {
    "content": "<string>",
    "score": 123,
    "document_id": "<string>",
    "chunk_number": 123,
    "metadata": {},
    "content_type": "<string>",
    "filename": "<string>",
    "download_url": "<string>"
  }
]

Headers

authorization
string

Body

application/json · object[]
document_id
string
required
chunk_number
integer
required
score
number | null

Response

200
application/json
Successful Response
content
string
required
score
number
required
document_id
string
required
chunk_number
integer
required
metadata
object
required
content_type
string
required
filename
string | null
download_url
string | null